aboutsummaryrefslogtreecommitdiff
path: root/javascript/app/components/bottom-panel.js
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/app/components/bottom-panel.js')
-rw-r--r--javascript/app/components/bottom-panel.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/javascript/app/components/bottom-panel.js b/javascript/app/components/bottom-panel.js
index 5d8b5bc..6415d0e 100644
--- a/javascript/app/components/bottom-panel.js
+++ b/javascript/app/components/bottom-panel.js
@@ -1,6 +1,6 @@
import Ember from 'ember';
-function show(component) {
+function show(component) {
const height = Math.floor(component.$containerElement.height() /2);
component.$().css({
"display":"block",
@@ -40,13 +40,13 @@ export default Ember.Component.extend({
}
});
});
- },
+ },
visibilityObserver : Ember.observer('visible',function () {
this.get('visible') ? show(this) : hide(this);
}),
actions : {
close () {
- this.set('visible',false);
+ this.set('visible',false);
}
}
});