aboutsummaryrefslogtreecommitdiff
path: root/javascript/app/components/type-signature.js
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/app/components/type-signature.js')
-rw-r--r--javascript/app/components/type-signature.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/javascript/app/components/type-signature.js b/javascript/app/components/type-signature.js
index ed1849c..8e7545f 100644
--- a/javascript/app/components/type-signature.js
+++ b/javascript/app/components/type-signature.js
@@ -1,11 +1,11 @@
import Ember from 'ember';
export default Ember.Component.extend({
- tagName : "span",
- expandTypeSynonyms: false,
+ tagName : "span",
+ expandTypeSynonyms: false,
expandTypeSynonymsLabel : Ember.computed('expandTypeSynonyms',function() {
return this.get('expandTypeSynonyms') ? "Show type synonyms" : "Expand type synonyms";
}),
- components : Ember.computed('type','expandTypeSynonyms',function() {
+ components : Ember.computed('type','expandTypeSynonyms',function() {
if(this.get('expandTypeSynonyms') && this.get('type.componentsExpanded')) {
return this.get('type.componentsExpanded');
} else {
@@ -14,7 +14,7 @@ export default Ember.Component.extend({
}),
typeObserver : Ember.observer('type',function() {
this.set('expandTypeSynonyms',false);
- }),
+ }),
actions : {
toggleExpandTypeSynonyms () {
this.toggleProperty('expandTypeSynonyms');