Should decode when setting __filename from location.

This commit is contained in:
Cheng Zhao 2014-01-24 21:20:30 +08:00
parent 363f1da77e
commit 76098255f0

View file

@ -25,11 +25,12 @@ global.module = module
# Set the __filename to the path of html file if it's file:// protocol.
if window.location.protocol is 'file:'
global.__filename =
pathname =
if process.platform is 'win32'
window.location.pathname.substr 1
else
window.location.pathname
global.__filename = decodeURIComponent pathname
global.__dirname = path.dirname global.__filename
# Set module's filename so relative require can work as expected.