Loading screen now has hints

This commit is contained in:
Thaum
2015-04-15 06:53:39 +00:00
parent d785e1ff59
commit ad43a1d331
2 changed files with 12 additions and 0 deletions

View File

@@ -4,5 +4,6 @@
</core-toolbar>
<div fit layout vertical center center-justified>
<paper-spinner class="bigSpinner" active></paper-spinner>
<div class="subhead">{{randomHint}}</div>
</div>
</template>

View File

@@ -0,0 +1,11 @@
var hints = [
"Drag and drop items to move them between containers",
"Hold Ctrl while dragging items around to only move some of them",
"Magic items are considered priceless, don't give them a gold value",
];
Template.loading.helpers({
randomHint: function(){
return Random.choice(hints);
}
});