Created
November 25, 2014 07:54
-
-
Save RYO-mini/edb75e4188f802cec4d9 to your computer and use it in GitHub Desktop.
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
var file_path; | |
var scripts = document.getElementsByTagName("script"); | |
var i = scripts.length; | |
while (i--) { | |
var match = scripts[i].src.match(/(^|.*\/)left_menu\.js$/); | |
if (match) { | |
file_path = match[1]; | |
break; | |
} | |
} | |
document.write('<html><head></head><body></body></html>'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment