Implemented detail view for items and containers

This commit is contained in:
Thaum
2015-02-02 10:48:56 +00:00
parent 5d9d72df00
commit 786e7cd769
14 changed files with 217 additions and 168 deletions

View File

@@ -321,10 +321,7 @@ Template.effectEdit.events({
}
},
"change #effectValueInput": function(event){
var inst = Template.instance();
var input = inst.find("#effectValueInput");
if(!input) return;
var value = input.value;
inst.value.set(value);
var value = event.currentTarget.value;
Template.instance().value.set(value);
}
});