mirror of
https://github.com/internetee/registry.git
synced 2025-07-31 15:06:23 +02:00
17 lines
289 B
JavaScript
17 lines
289 B
JavaScript
(function() {
|
|
var ready;
|
|
|
|
ready = function() {
|
|
$('.selectize').selectize({
|
|
allowEmptyOption: true
|
|
});
|
|
return $('form').each(function() {
|
|
return $(this).validate();
|
|
});
|
|
};
|
|
|
|
$(document).ready(ready);
|
|
|
|
$(document).on('page:load', ready);
|
|
|
|
}).call(this);
|