Private
Public Access
1
0

leaflet map - path not working

This commit is contained in:
Sander Roosendaal
2017-08-11 13:38:24 +02:00
parent 008e1ac2ee
commit 3a51c5c978
88 changed files with 32115 additions and 187 deletions

View File

@@ -0,0 +1,10 @@
$(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)
});
});