Added basic user guide

This commit is contained in:
Stefan Zermatten
2015-04-29 12:25:33 +02:00
parent b95636a8a3
commit e05fa064d5
13 changed files with 145 additions and 45 deletions

View File

@@ -5,7 +5,7 @@
font-size: 16px;
height: 40px;
overflow: hidden;
padding: 12px 0 12px 0;
padding: 12px 0 12px 16px;
text-overflow: ellipsis;
white-space: nowrap;
}

View File

@@ -1,6 +1,6 @@
<template name="characterSideList">
{{#if characters.count}}
<div class="list-subhead">Characters</div>
<core-item icon="social:people" label="Characters"></core-item>
<div>
{{#each characters}}
<div class="singleLineItem">{{name}}</div>

View File

@@ -21,5 +21,8 @@ Template.characterSideList.helpers({
Template.characterSideList.events({
"tap .singleLineItem": function(event, instance) {
Router.go("characterSheet", {_id: this._id});
}
},
"tap core-item": function() {
Router.go("characterList");
},
});