-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
I try this package like:
<template name="welcomeIndex">
Clock: {{clock}}
</template>
----------------------
Template.welcomeIndex.helpers({
clock: function () {
var ExerciseClock = new ReactiveClock("ExerciseClock");
ExerciseClock.start();
ExerciseClock.stop();
ExerciseClock.setElapsedSeconds(30);
var elapsedSeconds = ExerciseClock.elapsedTime({format: '00:00:00'});
return elapsedSeconds;
}
});don't show???
pl help me.