Make sure there's string to be replaced

This commit is contained in:
Hadi Nategh 2014-12-05 11:07:08 +00:00
parent 0516bf5f59
commit 9bfb3a3c98

View File

@ -393,7 +393,7 @@ var et2_date = et2_inputWidget.extend(
// Convert to timestamp - no seconds
this.date.setSeconds(0,0);
return this.date.toJSON().replace(/\.\d{3}Z$/, 'Z');
return this.date?this.date.toJSON().replace(/\.\d{3}Z$/, 'Z'):this.date;
}
});
et2_register_widget(et2_date, ["date", "date-time", "date-timeonly"]);