You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
384 B
10 lines
384 B
$(function () {
|
|
// Add AJAX loader
|
|
$('.plugin-list .text').click(function(){
|
|
var $target = $(this).parent().parent().parent().parent().children("div.plugin-editor");
|
|
var $icon = $('<i/>').attr('id','suit-loading-icon');
|
|
$icon.css({'display': 'inline-block', 'top': -25, 'left': 15, 'position': 'absolute'});
|
|
$target.prepend($icon)
|
|
|
|
});
|
|
});
|
|
|