Update assets #2723

This commit is contained in:
Martin Lensment 2015-06-19 16:00:08 +03:00
parent d3ddab0e08
commit ad1c24712e
17 changed files with 112921 additions and 382 deletions

View file

@ -0,0 +1,18 @@
(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);