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.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/javascript/app/components/resizable-panel.js b/javascript/app/components/resizable-panel.js
index 20d781b..fe51ade 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,7 +50,7 @@ export default Ember.Component.extend({
}
});
this.$alsoResizeElement = $alsoResizeElement;
- if(window.innerWidth < 700) {
+ if(window.innerWidth < 700) {
this.set('hidden',true);
hide(this,false);
}