Merge pull request #59 from subzey/feature/date-now

Use Date.now when possible
master
Dmitry Baranovskiy 2013-10-25 13:22:06 -07:00
commit f596064e26
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ var mina = (function (eve) {
return a + dif * (bb - b);
};
},
timer = function () {
timer = Date.now || function () {
return +new Date;
},
sta = function (val) {