hiding controller id chooser

This commit is contained in:
Senad Uka
2016-11-19 05:03:50 +01:00
parent 3af4a6d24a
commit f937f0ac2c
4 changed files with 19 additions and 2 deletions

View File

@@ -11,6 +11,11 @@ Template.tabs.helpers({
}
},
class_for_changer: function() {
var hide = Session.get('hide_controller_selection');
return (hide) ? "controller_selection hidden" : "controller_selection";
},
selected_controller: function() {
return Session.get('controller_id');
},