Should decode when setting __filename from location.
This commit is contained in:
parent
363f1da77e
commit
76098255f0
1 changed files with 2 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue