Skip to content

Instantly share code, notes, and snippets.

@nocubicles
Created April 9, 2015 07:59
Show Gist options
  • Select an option

  • Save nocubicles/5b56143f6e1de5d0dc74 to your computer and use it in GitHub Desktop.

Select an option

Save nocubicles/5b56143f6e1de5d0dc74 to your computer and use it in GitHub Desktop.
Template.insertProduct.events({
'submit form': function(event){
event.preventDefault();
Products.insert({
name: "randomstring",
score: "tere"
});
Meteor.call('activateCountDown');
}
});
Meteor.methods({
'activateCountDown': function() {
$('#clock').countdown("2015/04/08", function(event) {
var totalHours = event.offset.totalDays * 24 + event.offset.hours;
$(this).html(event.strftime(totalHours + ' hr %M min %S sec'));
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment