Implemented skill and attribute summary dialogs

This commit is contained in:
Thaum
2015-04-21 11:30:34 +00:00
parent b1e23eba9a
commit 6926693e9d
9 changed files with 349 additions and 109 deletions

View File

@@ -1,19 +1,21 @@
Template.stats.events({
"tap .statCard": function(event, instance){
//TODO reimplement this when the dialog is nice
return;
var charId = instance.data._id;
if(this.isSkill){
var charId = instance.data._id;
GlobalUI.setDetail({
template: "skillDialog",
data: {name: this.name, skillName: this.stat, charId: charId},
heroId: charId + this.stat
});
} else {
GlobalUI.setDetail({
template: "attributeDialog",
data: {name: this.name, statName: this.stat, charId: charId},
heroId: charId + this.stat
});
}
},
"tap .skillRow": function(event, instance){
//TODO reimplement this when the dialog is nice
return;
var skill = this.skill;
var charId = instance.data._id;
GlobalUI.setDetail({