mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 03:40:37 +02:00
Improved Menu-Manager navigation
This commit is contained in:
@@ -623,8 +623,23 @@ $(document).ready(function()
|
||||
|
||||
|
||||
|
||||
$("a.menuManagerSelect").click(function(e){
|
||||
|
||||
|
||||
var link = $(this).attr('data-url');
|
||||
var text = $(this).text();
|
||||
$(this).html(text + ' <i class="e-mm-select-loading fa fa-spin fa-spinner"></i>');
|
||||
|
||||
$("#menu_iframe").attr("src",link);
|
||||
|
||||
$("#menu_iframe").on("load", function () {
|
||||
$('.e-mm-select-loading').hide();
|
||||
});
|
||||
|
||||
$(this).preventDefault();
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
// Menu Manager Layout drop-down options
|
||||
$("#menuManagerSelect").change(function(){
|
||||
|
Reference in New Issue
Block a user