diff options
author | alexwl <alexey.a.kiryushin@gmail.com> | 2019-03-23 01:58:05 +0300 |
---|---|---|
committer | alexwl <alexey.a.kiryushin@gmail.com> | 2019-03-23 01:58:05 +0300 |
commit | db54d0594b84966ec3568c90c4219abb60c2e41f (patch) | |
tree | 8fd1633302fefd5e5803c4584566099f5f2f4ef4 /javascript/app/components | |
parent | cac568f01609bf224c0e26ec62880bf7dbb58a07 (diff) |
Hide the left panel by default on small screens; reduce initial-scale
Diffstat (limited to 'javascript/app/components')
-rw-r--r-- | javascript/app/components/resizable-panel.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/javascript/app/components/resizable-panel.js b/javascript/app/components/resizable-panel.js index 8dae7ed..20d781b 100644 --- a/javascript/app/components/resizable-panel.js +++ b/javascript/app/components/resizable-panel.js @@ -24,7 +24,7 @@ export default Ember.Component.extend({ hidden:false, hiddenByUser:false, didInsertElement : function () { - this._super(...arguments); + this._super(...arguments); Ember.run.next(this,() => { const onresize = () => { if(!this.get('hiddenByUser')) { @@ -50,6 +50,10 @@ export default Ember.Component.extend({ } }); this.$alsoResizeElement = $alsoResizeElement; + if(window.innerWidth < 700) { + this.set('hidden',true); + hide(this,false); + } }); }, hideButtonLabel : Ember.computed('hidden',function() { |