Fix __filename on Windows.

This commit is contained in:
Cheng Zhao 2013-12-17 22:16:15 +08:00
parent 5b12f80d01
commit c04a9933cc

View file

@ -39,7 +39,11 @@ global.clearImmediate = timers.clearImmediate
# Set the __filename to the path of html file if it's file:// protocol. # Set the __filename to the path of html file if it's file:// protocol.
if window.location.protocol is 'file:' if window.location.protocol is 'file:'
global.__filename = window.location.pathname global.__filename =
if process.platform is 'win32'
window.location.pathname.substr 1
else
window.location.pathname
global.__dirname = path.dirname global.__filename global.__dirname = path.dirname global.__filename
# Also search for module under the html file. # Also search for module under the html file.