Created
April 8, 2016 19:20
-
-
Save Kcko/1fc58fcda942f9d16d727d4828dad33a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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