Regular Labs (Peter van Westen): Advanced Module Manager 7.7.1 + Sourcerer 7.4.0 + Modals 9.13.0 + RegularLabs library 18.12.3953; commercial (regularlabs.com) -> deployed files. Signed-off-by: LÁZÁR Imre <imre@illusion.hu> Assisted-by: claude-code@claude-opus-4-8
38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
/**
|
|
* @package Advanced Module Manager
|
|
* @version 7.7.1
|
|
*
|
|
* @author Peter van Westen <info@regularlabs.com>
|
|
* @link http://www.regularlabs.com
|
|
* @copyright Copyright © 2018 Regular Labs All Rights Reserved
|
|
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
|
|
*/
|
|
|
|
(function($) {
|
|
$(document).ready(function() {
|
|
// Menu items edit icons:
|
|
setTimeout(function() {
|
|
$('.jmoddiv[data-jmenuedittip] .nav li,.jmoddiv[data-jmenuedittip].nav li,.jmoddiv[data-jmenuedittip] .nav .nav-child li,.jmoddiv[data-jmenuedittip].nav .nav-child li').on({
|
|
mouseenter: function() {
|
|
var itemids = /\bitem-(\d+)\b/.exec($(this).attr('class'));
|
|
if (typeof itemids[1] !== 'string') {
|
|
return;
|
|
}
|
|
|
|
setTimeout(function() {
|
|
$('a.jfedit-menu').each(function() {
|
|
var menuitemEditUrl = $(this).prop('href')
|
|
.replace(
|
|
/(?:\/administrator)?\/index.php\?option=com_advancedmodules.*?edit([^\d]+).+$/,
|
|
'/administrator/index.php?option=com_menus&view=item&layout=edit$1' + itemids[1]
|
|
);
|
|
|
|
$(this).prop('href', menuitemEditUrl);
|
|
});
|
|
}, 10);
|
|
}
|
|
});
|
|
}, 1000);
|
|
});
|
|
})(jQuery);
|