Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created April 8, 2016 19:20
Show Gist options
  • Save Kcko/1fc58fcda942f9d16d727d4828dad33a to your computer and use it in GitHub Desktop.
Save Kcko/1fc58fcda942f9d16d727d4828dad33a to your computer and use it in GitHub Desktop.
(function($, undefined) {
$.nette.ext('spinner', {
init: function () {
spinner = $('<div></div>', { id: "ajax-spinner" });
spinner.appendTo("body");
},
before: function (xhr, settings) {
$("#ajax-spinner").css({
visibility: "visible",
left: settings.nette.e.pageX,
top: settings.nette.e.pageY
});
},
complete: function () {
$("#ajax-spinner").css({
visibility: "hidden"
});
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment