diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-05-14 14:27:39 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-05-14 14:28:47 +0200 |
commit | 22b8b6ab205eb2fe7abcd3fedfc108de12ef61d9 (patch) | |
tree | 14a8af5ef9ac4829c12317fe0ea4460d84f5c799 /client/components/lists/menu.js | |
parent | fbc4c5e82ef75c6cbf37245c4eec30f4492f9dcc (diff) | |
download | wekan-22b8b6ab205eb2fe7abcd3fedfc108de12ef61d9.tar.gz wekan-22b8b6ab205eb2fe7abcd3fedfc108de12ef61d9.tar.bz2 wekan-22b8b6ab205eb2fe7abcd3fedfc108de12ef61d9.zip |
Style tweaks
Follows strictly jshint and jscs rules.
Diffstat (limited to 'client/components/lists/menu.js')
-rw-r--r-- | client/components/lists/menu.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/lists/menu.js b/client/components/lists/menu.js index ef08cf76..1e1eb53f 100644 --- a/client/components/lists/menu.js +++ b/client/components/lists/menu.js @@ -3,8 +3,8 @@ Template.listActionPopup.events({ // XXX We need a better API and architecture here. See // https://github.com/peerlibrary/meteor-blaze-components/issues/19 var listDom = document.getElementById('js-list-' + this._id); - var listComponent = Blaze.getView(listDom).templateInstance().get('component'); - listComponent.openForm(); + var listInstance = Blaze.getView(listDom).templateInstance(); + listInstance.get('component').openForm(); Popup.close(); }, 'click .js-list-subscribe': function() {}, |