Browse Source

support date object. #37

pull/39/head
gregwebs 13 years ago
parent
commit
22f8bf39d3
  1. 2
      timeline.js

2
timeline.js

@ -2963,6 +2963,8 @@ if(typeof VMM != 'undefined' && typeof VMM.Util == 'undefined') {
================================================== */
// VMM.Util.parseDate(str)
parseDate: function(d) {
if (typeof(d) == "object") { return d; }
var _date;
if ( d.match(/,/gi) ) {

Loading…
Cancel
Save