mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
26 lines
821 B
JavaScript
26 lines
821 B
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
function initSwapRemoteContainerListeners() {
|
|
$(document).on('click', 'a[data-action="swap-remote-container"]', function(ev) {
|
|
let element = ev.currentTarget;
|
|
ev.stopImmediatePropagation();
|
|
ev.stopPropagation();
|
|
ev.preventDefault();
|
|
|
|
$.get(element.getAttribute('href')).then(function({ html, flash }) {
|
|
let targetID = element.getAttribute('data-target');
|
|
let targetElement = $(element).closest(targetID);
|
|
let newContainer = $(html);
|
|
targetElement.replaceWith(newContainer);
|
|
newContainer.find('.selectpicker').selectpicker();
|
|
|
|
if (flash) {
|
|
HelperModule.flashAlertMsg(flash, 'success');
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
$(document).one('turbolinks:load', initSwapRemoteContainerListeners);
|
|
}());
|