inject global environment
This commit is contained in:
parent
1a6b730146
commit
2a16350c2b
@ -3752,6 +3752,14 @@ let global$2 = new Function('return this')();
|
||||
global$2.doric = doric;
|
||||
global$2.context = jsObtainContext(contextId);
|
||||
global$2.Entry = jsObtainEntry(contextId);
|
||||
global$2.Environment = {
|
||||
'platform': 'debugger',
|
||||
'platformVersion': '1.0',
|
||||
'appName': '',
|
||||
'appVersion': '',
|
||||
'screenWidth': 0,
|
||||
'screenHeight': 0
|
||||
};
|
||||
// dev kit client
|
||||
const devClient = new WebSocketClient('ws://localhost:7777');
|
||||
devClient.on('open', function open() {
|
||||
|
@ -25,6 +25,15 @@ global.doric = doric
|
||||
global.context = doric.jsObtainContext(contextId)
|
||||
global.Entry = doric.jsObtainEntry(contextId)
|
||||
|
||||
global.Environment = {
|
||||
'platform': 'debugger',
|
||||
'platformVersion': '1.0',
|
||||
'appName': '',
|
||||
'appVersion': '',
|
||||
'screenWidth': 0,
|
||||
'screenHeight': 0
|
||||
}
|
||||
|
||||
// dev kit client
|
||||
const devClient = new WebSocketClient('ws://localhost:7777')
|
||||
devClient.on('open', function open() {
|
||||
|
@ -24,6 +24,14 @@ let global = new Function('return this')();
|
||||
global.doric = doric;
|
||||
global.context = doric.jsObtainContext(contextId);
|
||||
global.Entry = doric.jsObtainEntry(contextId);
|
||||
global.Environment = {
|
||||
'platform': 'debugger',
|
||||
'platformVersion': '1.0',
|
||||
'appName': '',
|
||||
'appVersion': '',
|
||||
'screenWidth': 0,
|
||||
'screenHeight': 0
|
||||
};
|
||||
// dev kit client
|
||||
const devClient = new WebSocketClient('ws://localhost:7777');
|
||||
devClient.on('open', function open() {
|
||||
|
Reference in New Issue
Block a user