Created
March 11, 2014 08:42
-
-
Save AdamGerthel/9481764 to your computer and use it in GitHub Desktop.
Useful snippet for theming Drupal ajax throbbers. Execute it in the console and it stops all future ajax requests from working. The throbbers will be displayed but never removed.
This file contains 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
XMLHttpRequest = function(){}; | |
XMLHttpRequest.prototype = { | |
open: function(){}, | |
send: function(){} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment