Style tweaks

Follows strictly jshint and jscs rules.
This commit is contained in:
Maxime Quandalle 2015-05-14 14:27:39 +02:00
parent fbc4c5e82e
commit 22b8b6ab20
8 changed files with 23 additions and 19 deletions

View file

@ -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() {},