Created
April 9, 2015 07:59
-
-
Save nocubicles/5b56143f6e1de5d0dc74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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