Files
DiceCloud/rpg-docs/client/views/loading/loading.js
2015-04-15 06:53:39 +00:00

11 lines
302 B
JavaScript

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);
}
});