mirror of
https://github.com/internetee/registry.git
synced 2025-07-25 20:18:22 +02:00
18 lines
396 B
JavaScript
18 lines
396 B
JavaScript
(function() {
|
|
$(document).on('page:change', function() {
|
|
$('.selectize').selectize({
|
|
allowEmptyOption: true
|
|
});
|
|
$('.js-datepicker').datepicker({
|
|
showAnim: "",
|
|
autoclose: true,
|
|
dateFormat: "dd.mm.yy",
|
|
changeMonth: true,
|
|
changeYear: true
|
|
});
|
|
return $('form').each(function() {
|
|
return $(this).validate();
|
|
});
|
|
});
|
|
|
|
}).call(this);
|