scinote-web/app/assets/javascripts/shared/remote_modal.js

23 lines
621 B
JavaScript
Raw Normal View History

2021-04-18 23:19:16 +08:00
(function () {
'use strict';
function initRemoteModalListeners() {
$(document).on('click', 'a[data-action="remote-modal"]', function(ev) {
ev.stopImmediatePropagation();
ev.stopPropagation();
ev.preventDefault();
2021-05-08 16:05:22 +08:00
animateSpinner();
$.get(ev.currentTarget.getAttribute('href')).then(function({modal}) {
2021-04-18 23:19:16 +08:00
$(modal).modal('show')
.on("shown.bs.modal", function() {
$(this).find(".selectpicker").selectpicker();
2021-05-02 17:36:10 +08:00
});
2021-05-08 16:05:22 +08:00
animateSpinner(null, false);
2021-05-02 17:36:10 +08:00
});
});
2021-04-18 23:19:16 +08:00
}
$(document).one('turbolinks:load', initRemoteModalListeners);
2021-05-02 17:36:10 +08:00
}());