This commit is contained in:
Hike Danakian 2013-07-22 13:04:35 -07:00
Родитель 61b6c1b1e5
Коммит 6ce5db08da
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -60,7 +60,9 @@ function ($, EventModel, forms) { return function (mapMaker) {
$.validator.addMethod('afterStartDate', function(val, endElem) {
var start = $('#event_beginDate').val(),
end = $(endElem).val();
return new Date(start) <= new Date(end)
if (start && end)
return new Date(start) <= new Date(end);
else return true;
}, "End date must be after start date.");
var $createForm = $('form#create-event');