| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/components/com_community/assets/source/js/popups/ |
Upload File : |
(function( root, $, factory ) {
joms.popup || (joms.popup = {});
joms.popup.event || (joms.popup.event = {});
joms.popup.event.response = factory( root, $ );
define([ 'utils/popup' ], function() {
return joms.popup.event.response;
});
})( window, joms.jQuery, function( window, $ ) {
var popup, elem, id;
function render( _popup, _id, _data ) {
if ( elem ) elem.off();
popup = _popup;
id = _id;
popup.items[0] = {
type: 'inline',
src: buildHtml( _data )
};
popup.updateItemHTML();
elem = popup.contentContainer;
elem.on( 'click', 'a[data-value]', save );
}
function save( e ) {
var value = $( e.currentTarget ).data('value');
joms.ajax({
func: 'events,ajaxUpdateStatus',
data: [ id, value ],
callback: function() {
window.location.reload();
}
});
}
function buildHtml( data ) {
var options = '',
i;
for ( i = 0; i < data.length; i++ ) {
options += '<li><a data-value="' + data[i][0] + '" href="javascript:">' + data[i][1] + '</a></li>';
}
return [
'<div class="joms-popup joms-popup--dropdown">',
'<ul class="joms-dropdown">', options, '</ul>',
'<button class="mfp-close" type="button" title="',window.joms_lang.COM_COMMUNITY_CLOSE_BUTTON_TITLE,'">×</button>',
'</div>'
].join('');
}
// Exports.
return function( id ) {
var data = [].slice.call( arguments );
data.shift();
joms.util.popup.prepare(function( mfp ) {
render( mfp, id, data );
});
};
});