app/assets/javascripts/administrate-bootstrap-theme/theme.js in administrate-bootstrap-theme-0.1.9 vs app/assets/javascripts/administrate-bootstrap-theme/theme.js in administrate-bootstrap-theme-0.2.0
- old
+ new
@@ -1,2 +1,22 @@
-//= require bootstrap/dist/js/bootstrap.bundle
+//= require jquery
+//= require jquery_ujs
+// from: node_modules/bootstrap/dist/js/bootstrap.bundle.js
+//= require ./bootstrap/bootstrap.bundle
+
+// from: node_modules/flatpickr/dist/flatpickr.js
+//= require ./flatpickr/flatpickr
+
+//= require selectize
+
+document.addEventListener('DOMContentLoaded', function(_event) {
+ if(typeof window.flatpickr === 'function') {
+ var options = window.flatpickr_filters_options;
+ if(typeof options !== 'object') options = { enableTime: true };
+ $('[data-type="date"]').flatpickr(options);
+ }
+
+ $('.field-unit--belongs-to select').selectize({});
+ $('.field-unit--has-many select').selectize({});
+ $('.field-unit--polymorphic select').selectize({});
+});