Last active
May 15, 2018 23:41
-
-
Save mohitt/44fa4335afa2fd6f05559676f141a6dc 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() { | |
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