Precompile assets

This commit is contained in:
Priit Tark 2015-05-22 14:12:27 +03:00
parent b5f3b8d6e0
commit ba929c51bd
97 changed files with 112257 additions and 2 deletions

View file

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