Existing series loading again

This commit is contained in:
Mark McDowall 2012-12-26 21:31:55 -08:00
commit 89d9809aa2
2 changed files with 12 additions and 1 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));