Fix __dirname and __filename in asar: protocol.

This commit is contained in:
Cheng Zhao 2014-09-24 13:23:37 +08:00
parent 8199ad2ae6
commit b6cded379e

View file

@ -24,8 +24,8 @@ require path.resolve(__dirname, '..', '..', 'common', 'lib', 'init.js')
global.require = require
global.module = module
# Set the __filename to the path of html file if it's file:// protocol.
if window.location.protocol is 'file:'
# Set the __filename to the path of html file if it's file: or asar: protocol.
if window.location.protocol in ['file:', 'asar:']
pathname =
if process.platform is 'win32'
window.location.pathname.substr 1