Added basic user guide
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -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>
|
||||
|
||||
@@ -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");
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user