Started implementing sharing support

This commit is contained in:
Stefan Zermatten
2015-04-10 12:38:38 +02:00
parent 3fbd6d279a
commit ccbe71514e
7 changed files with 80 additions and 15 deletions

View File

@@ -33,4 +33,11 @@ Template.characterSheet.events({
template: "deleteCharacterConfirmation",
});
},
"tap #shareCharacter": function(event, instance){
GlobalUI.showDialog({
heading: "Share " + this.name,
data: this,
template: "shareDialog",
});
},
});