mirror of
https://github.com/internetee/registry.git
synced 2025-07-05 10:43:32 +02:00
12 lines
215 B
CoffeeScript
12 lines
215 B
CoffeeScript
ready = ->
|
|
$('.selectize').selectize({
|
|
allowEmptyOption: true
|
|
});
|
|
|
|
# client side validate all forms
|
|
$('form').each ->
|
|
$(this).validate()
|
|
|
|
|
|
$(document).ready(ready)
|
|
$(document).on('page:load', ready)
|