Lazy load exisitng series

New: Existing series will be lazy loaded on Add Series page
This commit is contained in:
Mark McDowall 2012-10-28 12:08:37 -07:00
parent 50ad661a95
commit 5220de5c66
5 changed files with 47 additions and 6 deletions

View file

@ -160,4 +160,15 @@
data: clickInfo.concat($(this).serializeArray())
});
});
//Custom Extensions
$(document).ready(function () {
$("div[data-ajax-action-link=true]").each(function () {
asyncRequest(this, {
url: $(this).attr('data-href'),
type: "GET",
data: []
});
});
});
}(jQuery));