aboutsummaryrefslogtreecommitdiff
path: root/javascript/app/components/resizable-panel.js
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/app/components/resizable-panel.js')
-rw-r--r--javascript/app/components/resizable-panel.js6
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() {