Files
DiceCloud/rpg-docs/client/views/loading/loading.js
2015-04-22 12:44:25 +02:00

12 lines
303 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);
}
});