| Current Path : /home/ereika83/public_html/wp-content/plugins/bb-plugin/modules/countdown/js/ |
| Current File : /home/ereika83/public_html/wp-content/plugins/bb-plugin/modules/countdown/js/settings.js |
(function ($) {
FLBuilder.registerModuleHelper("countdown", {
submit: function () {
var form = $(".fl-builder-settings"),
date = form.find('select[name="ui_date"]').val();
if (Date.parse(date) <= Date.now()) {
FLBuilder.alert(FLBuilderStrings.countdownDateisInThePast);
return false;
}
return true;
},
});
})(jQuery);