Guest User

Untitled

a guest
Jan 21st, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. // Override system
  2. (function() {
  3. var proxied = window.alert;
  4. window.alert = function() {
  5. // Some actions
  6. return proxied.apply(this, arguments);
  7. };
  8. })();
Add Comment
Please, Sign In to add comment