Skip to content

Instantly share code, notes, and snippets.

@mohitt
Last active May 15, 2018 23:41
Show Gist options
  • Save mohitt/44fa4335afa2fd6f05559676f141a6dc to your computer and use it in GitHub Desktop.
Save mohitt/44fa4335afa2fd6f05559676f141a6dc to your computer and use it in GitHub Desktop.
(function() {
var _open = window.open;
window.open = function(str) {
console.log(JSON.stringify(arguments));
console.log(navigator.userAgent);
_open.apply(window, arguments);
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment