@openfin/fdc3-api 38.83.75 → 38.83.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/fdc3-api-alpha.d.ts +23 -7
- package/out/fdc3-api-beta.d.ts +23 -7
- package/out/fdc3-api-public.d.ts +23 -7
- package/out/fdc3-api.d.ts +23 -7
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -12387,6 +12387,9 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12387
12387
|
response: string;
|
|
12388
12388
|
};
|
|
12389
12389
|
'get-focused-window': GetterCall<OpenFin.Identity | null>;
|
|
12390
|
+
'get-focused-content': GetterCall<(OpenFin.Identity & {
|
|
12391
|
+
entityType: 'window' | 'view';
|
|
12392
|
+
}) | null>;
|
|
12390
12393
|
'is-app-certified': {
|
|
12391
12394
|
request: {
|
|
12392
12395
|
manifestUrl: string;
|
|
@@ -13856,7 +13859,9 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
13856
13859
|
*/
|
|
13857
13860
|
getEnvironmentVariable(envName: string): Promise<string>;
|
|
13858
13861
|
/**
|
|
13859
|
-
* Get
|
|
13862
|
+
* Get currently focused Window.
|
|
13863
|
+
* If a View currently has focus, returns the identity of View's parent Window.
|
|
13864
|
+
* Use {@link Window._Window#getFocusedContent Window.getFocusedContent} to directly access currently focused Window or View.
|
|
13860
13865
|
*
|
|
13861
13866
|
* @example
|
|
13862
13867
|
* ```js
|
|
@@ -13864,6 +13869,17 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
13864
13869
|
* ```
|
|
13865
13870
|
*/
|
|
13866
13871
|
getFocusedWindow(): Promise<OpenFin.Identity | null>;
|
|
13872
|
+
/**
|
|
13873
|
+
* Get currently focused content. Returns identity of entity with `entityType`.
|
|
13874
|
+
*
|
|
13875
|
+
* @example
|
|
13876
|
+
* ```js
|
|
13877
|
+
* fin.System.getFocusedContent().then(contentIdentity => console.log(contentIdentity)).catch(err => console.log(err));
|
|
13878
|
+
* ```
|
|
13879
|
+
*/
|
|
13880
|
+
getFocusedContent(): Promise<(OpenFin.Identity & {
|
|
13881
|
+
entityType: 'window' | 'view';
|
|
13882
|
+
}) | null>;
|
|
13867
13883
|
/**
|
|
13868
13884
|
* Returns information about the given app's certification status
|
|
13869
13885
|
*
|
|
@@ -17156,7 +17172,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17156
17172
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
|
17157
17173
|
* });
|
|
17158
17174
|
*
|
|
17159
|
-
* await view.navigate('
|
|
17175
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
|
17160
17176
|
*
|
|
17161
17177
|
* const sharedWorkers = await view.getSharedWorkers();
|
|
17162
17178
|
* ```
|
|
@@ -17167,7 +17183,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17167
17183
|
* name:'child',
|
|
17168
17184
|
* defaultWidth: 300,
|
|
17169
17185
|
* defaultHeight: 300,
|
|
17170
|
-
* url: '
|
|
17186
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
|
17171
17187
|
* frame: true,
|
|
17172
17188
|
* autoShow: true
|
|
17173
17189
|
* };
|
|
@@ -17192,7 +17208,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17192
17208
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
|
17193
17209
|
* });
|
|
17194
17210
|
*
|
|
17195
|
-
* await view.navigate('
|
|
17211
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
|
17196
17212
|
*
|
|
17197
17213
|
* await view.inspectSharedWorker();
|
|
17198
17214
|
* ```
|
|
@@ -17203,7 +17219,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17203
17219
|
* name:'child',
|
|
17204
17220
|
* defaultWidth: 300,
|
|
17205
17221
|
* defaultHeight: 300,
|
|
17206
|
-
* url: '
|
|
17222
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
|
17207
17223
|
* frame: true,
|
|
17208
17224
|
* autoShow: true
|
|
17209
17225
|
* };
|
|
@@ -17229,7 +17245,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17229
17245
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
|
17230
17246
|
* });
|
|
17231
17247
|
*
|
|
17232
|
-
* await view.navigate('
|
|
17248
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
|
17233
17249
|
*
|
|
17234
17250
|
* const sharedWorkers = await view.getSharedWorkers();
|
|
17235
17251
|
* await view.inspectSharedWorkerById(sharedWorkers[0].id);
|
|
@@ -17241,7 +17257,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17241
17257
|
* name:'child',
|
|
17242
17258
|
* defaultWidth: 300,
|
|
17243
17259
|
* defaultHeight: 300,
|
|
17244
|
-
* url: '
|
|
17260
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
|
17245
17261
|
* frame: true,
|
|
17246
17262
|
* autoShow: true
|
|
17247
17263
|
* };
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -12387,6 +12387,9 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12387
12387
|
response: string;
|
|
12388
12388
|
};
|
|
12389
12389
|
'get-focused-window': GetterCall<OpenFin.Identity | null>;
|
|
12390
|
+
'get-focused-content': GetterCall<(OpenFin.Identity & {
|
|
12391
|
+
entityType: 'window' | 'view';
|
|
12392
|
+
}) | null>;
|
|
12390
12393
|
'is-app-certified': {
|
|
12391
12394
|
request: {
|
|
12392
12395
|
manifestUrl: string;
|
|
@@ -13856,7 +13859,9 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
13856
13859
|
*/
|
|
13857
13860
|
getEnvironmentVariable(envName: string): Promise<string>;
|
|
13858
13861
|
/**
|
|
13859
|
-
* Get
|
|
13862
|
+
* Get currently focused Window.
|
|
13863
|
+
* If a View currently has focus, returns the identity of View's parent Window.
|
|
13864
|
+
* Use {@link Window._Window#getFocusedContent Window.getFocusedContent} to directly access currently focused Window or View.
|
|
13860
13865
|
*
|
|
13861
13866
|
* @example
|
|
13862
13867
|
* ```js
|
|
@@ -13864,6 +13869,17 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
13864
13869
|
* ```
|
|
13865
13870
|
*/
|
|
13866
13871
|
getFocusedWindow(): Promise<OpenFin.Identity | null>;
|
|
13872
|
+
/**
|
|
13873
|
+
* Get currently focused content. Returns identity of entity with `entityType`.
|
|
13874
|
+
*
|
|
13875
|
+
* @example
|
|
13876
|
+
* ```js
|
|
13877
|
+
* fin.System.getFocusedContent().then(contentIdentity => console.log(contentIdentity)).catch(err => console.log(err));
|
|
13878
|
+
* ```
|
|
13879
|
+
*/
|
|
13880
|
+
getFocusedContent(): Promise<(OpenFin.Identity & {
|
|
13881
|
+
entityType: 'window' | 'view';
|
|
13882
|
+
}) | null>;
|
|
13867
13883
|
/**
|
|
13868
13884
|
* Returns information about the given app's certification status
|
|
13869
13885
|
*
|
|
@@ -17156,7 +17172,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17156
17172
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
|
17157
17173
|
* });
|
|
17158
17174
|
*
|
|
17159
|
-
* await view.navigate('
|
|
17175
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
|
17160
17176
|
*
|
|
17161
17177
|
* const sharedWorkers = await view.getSharedWorkers();
|
|
17162
17178
|
* ```
|
|
@@ -17167,7 +17183,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17167
17183
|
* name:'child',
|
|
17168
17184
|
* defaultWidth: 300,
|
|
17169
17185
|
* defaultHeight: 300,
|
|
17170
|
-
* url: '
|
|
17186
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
|
17171
17187
|
* frame: true,
|
|
17172
17188
|
* autoShow: true
|
|
17173
17189
|
* };
|
|
@@ -17192,7 +17208,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17192
17208
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
|
17193
17209
|
* });
|
|
17194
17210
|
*
|
|
17195
|
-
* await view.navigate('
|
|
17211
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
|
17196
17212
|
*
|
|
17197
17213
|
* await view.inspectSharedWorker();
|
|
17198
17214
|
* ```
|
|
@@ -17203,7 +17219,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17203
17219
|
* name:'child',
|
|
17204
17220
|
* defaultWidth: 300,
|
|
17205
17221
|
* defaultHeight: 300,
|
|
17206
|
-
* url: '
|
|
17222
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
|
17207
17223
|
* frame: true,
|
|
17208
17224
|
* autoShow: true
|
|
17209
17225
|
* };
|
|
@@ -17229,7 +17245,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17229
17245
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
|
17230
17246
|
* });
|
|
17231
17247
|
*
|
|
17232
|
-
* await view.navigate('
|
|
17248
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
|
17233
17249
|
*
|
|
17234
17250
|
* const sharedWorkers = await view.getSharedWorkers();
|
|
17235
17251
|
* await view.inspectSharedWorkerById(sharedWorkers[0].id);
|
|
@@ -17241,7 +17257,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17241
17257
|
* name:'child',
|
|
17242
17258
|
* defaultWidth: 300,
|
|
17243
17259
|
* defaultHeight: 300,
|
|
17244
|
-
* url: '
|
|
17260
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
|
17245
17261
|
* frame: true,
|
|
17246
17262
|
* autoShow: true
|
|
17247
17263
|
* };
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -12387,6 +12387,9 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12387
12387
|
response: string;
|
|
12388
12388
|
};
|
|
12389
12389
|
'get-focused-window': GetterCall<OpenFin.Identity | null>;
|
|
12390
|
+
'get-focused-content': GetterCall<(OpenFin.Identity & {
|
|
12391
|
+
entityType: 'window' | 'view';
|
|
12392
|
+
}) | null>;
|
|
12390
12393
|
'is-app-certified': {
|
|
12391
12394
|
request: {
|
|
12392
12395
|
manifestUrl: string;
|
|
@@ -13856,7 +13859,9 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
13856
13859
|
*/
|
|
13857
13860
|
getEnvironmentVariable(envName: string): Promise<string>;
|
|
13858
13861
|
/**
|
|
13859
|
-
* Get
|
|
13862
|
+
* Get currently focused Window.
|
|
13863
|
+
* If a View currently has focus, returns the identity of View's parent Window.
|
|
13864
|
+
* Use {@link Window._Window#getFocusedContent Window.getFocusedContent} to directly access currently focused Window or View.
|
|
13860
13865
|
*
|
|
13861
13866
|
* @example
|
|
13862
13867
|
* ```js
|
|
@@ -13864,6 +13869,17 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
13864
13869
|
* ```
|
|
13865
13870
|
*/
|
|
13866
13871
|
getFocusedWindow(): Promise<OpenFin.Identity | null>;
|
|
13872
|
+
/**
|
|
13873
|
+
* Get currently focused content. Returns identity of entity with `entityType`.
|
|
13874
|
+
*
|
|
13875
|
+
* @example
|
|
13876
|
+
* ```js
|
|
13877
|
+
* fin.System.getFocusedContent().then(contentIdentity => console.log(contentIdentity)).catch(err => console.log(err));
|
|
13878
|
+
* ```
|
|
13879
|
+
*/
|
|
13880
|
+
getFocusedContent(): Promise<(OpenFin.Identity & {
|
|
13881
|
+
entityType: 'window' | 'view';
|
|
13882
|
+
}) | null>;
|
|
13867
13883
|
/**
|
|
13868
13884
|
* Returns information about the given app's certification status
|
|
13869
13885
|
*
|
|
@@ -17156,7 +17172,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17156
17172
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
|
17157
17173
|
* });
|
|
17158
17174
|
*
|
|
17159
|
-
* await view.navigate('
|
|
17175
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
|
17160
17176
|
*
|
|
17161
17177
|
* const sharedWorkers = await view.getSharedWorkers();
|
|
17162
17178
|
* ```
|
|
@@ -17167,7 +17183,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17167
17183
|
* name:'child',
|
|
17168
17184
|
* defaultWidth: 300,
|
|
17169
17185
|
* defaultHeight: 300,
|
|
17170
|
-
* url: '
|
|
17186
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
|
17171
17187
|
* frame: true,
|
|
17172
17188
|
* autoShow: true
|
|
17173
17189
|
* };
|
|
@@ -17192,7 +17208,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17192
17208
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
|
17193
17209
|
* });
|
|
17194
17210
|
*
|
|
17195
|
-
* await view.navigate('
|
|
17211
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
|
17196
17212
|
*
|
|
17197
17213
|
* await view.inspectSharedWorker();
|
|
17198
17214
|
* ```
|
|
@@ -17203,7 +17219,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17203
17219
|
* name:'child',
|
|
17204
17220
|
* defaultWidth: 300,
|
|
17205
17221
|
* defaultHeight: 300,
|
|
17206
|
-
* url: '
|
|
17222
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
|
17207
17223
|
* frame: true,
|
|
17208
17224
|
* autoShow: true
|
|
17209
17225
|
* };
|
|
@@ -17229,7 +17245,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17229
17245
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
|
17230
17246
|
* });
|
|
17231
17247
|
*
|
|
17232
|
-
* await view.navigate('
|
|
17248
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
|
17233
17249
|
*
|
|
17234
17250
|
* const sharedWorkers = await view.getSharedWorkers();
|
|
17235
17251
|
* await view.inspectSharedWorkerById(sharedWorkers[0].id);
|
|
@@ -17241,7 +17257,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17241
17257
|
* name:'child',
|
|
17242
17258
|
* defaultWidth: 300,
|
|
17243
17259
|
* defaultHeight: 300,
|
|
17244
|
-
* url: '
|
|
17260
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
|
17245
17261
|
* frame: true,
|
|
17246
17262
|
* autoShow: true
|
|
17247
17263
|
* };
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -12780,6 +12780,9 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12780
12780
|
response: string;
|
|
12781
12781
|
};
|
|
12782
12782
|
'get-focused-window': GetterCall<OpenFin.Identity | null>;
|
|
12783
|
+
'get-focused-content': GetterCall<(OpenFin.Identity & {
|
|
12784
|
+
entityType: 'window' | 'view';
|
|
12785
|
+
}) | null>;
|
|
12783
12786
|
'is-app-certified': {
|
|
12784
12787
|
request: {
|
|
12785
12788
|
manifestUrl: string;
|
|
@@ -14255,7 +14258,9 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
14255
14258
|
*/
|
|
14256
14259
|
getEnvironmentVariable(envName: string): Promise<string>;
|
|
14257
14260
|
/**
|
|
14258
|
-
* Get
|
|
14261
|
+
* Get currently focused Window.
|
|
14262
|
+
* If a View currently has focus, returns the identity of View's parent Window.
|
|
14263
|
+
* Use {@link Window._Window#getFocusedContent Window.getFocusedContent} to directly access currently focused Window or View.
|
|
14259
14264
|
*
|
|
14260
14265
|
* @example
|
|
14261
14266
|
* ```js
|
|
@@ -14263,6 +14268,17 @@ declare class System extends EmitterBase<OpenFin.SystemEvent> {
|
|
|
14263
14268
|
* ```
|
|
14264
14269
|
*/
|
|
14265
14270
|
getFocusedWindow(): Promise<OpenFin.Identity | null>;
|
|
14271
|
+
/**
|
|
14272
|
+
* Get currently focused content. Returns identity of entity with `entityType`.
|
|
14273
|
+
*
|
|
14274
|
+
* @example
|
|
14275
|
+
* ```js
|
|
14276
|
+
* fin.System.getFocusedContent().then(contentIdentity => console.log(contentIdentity)).catch(err => console.log(err));
|
|
14277
|
+
* ```
|
|
14278
|
+
*/
|
|
14279
|
+
getFocusedContent(): Promise<(OpenFin.Identity & {
|
|
14280
|
+
entityType: 'window' | 'view';
|
|
14281
|
+
}) | null>;
|
|
14266
14282
|
/**
|
|
14267
14283
|
* Returns information about the given app's certification status
|
|
14268
14284
|
*
|
|
@@ -17599,7 +17615,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17599
17615
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
|
17600
17616
|
* });
|
|
17601
17617
|
*
|
|
17602
|
-
* await view.navigate('
|
|
17618
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
|
17603
17619
|
*
|
|
17604
17620
|
* const sharedWorkers = await view.getSharedWorkers();
|
|
17605
17621
|
* ```
|
|
@@ -17610,7 +17626,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17610
17626
|
* name:'child',
|
|
17611
17627
|
* defaultWidth: 300,
|
|
17612
17628
|
* defaultHeight: 300,
|
|
17613
|
-
* url: '
|
|
17629
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
|
17614
17630
|
* frame: true,
|
|
17615
17631
|
* autoShow: true
|
|
17616
17632
|
* };
|
|
@@ -17635,7 +17651,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17635
17651
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
|
17636
17652
|
* });
|
|
17637
17653
|
*
|
|
17638
|
-
* await view.navigate('
|
|
17654
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
|
17639
17655
|
*
|
|
17640
17656
|
* await view.inspectSharedWorker();
|
|
17641
17657
|
* ```
|
|
@@ -17646,7 +17662,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17646
17662
|
* name:'child',
|
|
17647
17663
|
* defaultWidth: 300,
|
|
17648
17664
|
* defaultHeight: 300,
|
|
17649
|
-
* url: '
|
|
17665
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
|
17650
17666
|
* frame: true,
|
|
17651
17667
|
* autoShow: true
|
|
17652
17668
|
* };
|
|
@@ -17672,7 +17688,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17672
17688
|
* bounds: {top: 10, left: 10, width: 200, height: 200}
|
|
17673
17689
|
* });
|
|
17674
17690
|
*
|
|
17675
|
-
* await view.navigate('
|
|
17691
|
+
* await view.navigate('https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/');
|
|
17676
17692
|
*
|
|
17677
17693
|
* const sharedWorkers = await view.getSharedWorkers();
|
|
17678
17694
|
* await view.inspectSharedWorkerById(sharedWorkers[0].id);
|
|
@@ -17684,7 +17700,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
17684
17700
|
* name:'child',
|
|
17685
17701
|
* defaultWidth: 300,
|
|
17686
17702
|
* defaultHeight: 300,
|
|
17687
|
-
* url: '
|
|
17703
|
+
* url: 'https://mdn.github.io/dom-examples/web-workers/simple-shared-worker/',
|
|
17688
17704
|
* frame: true,
|
|
17689
17705
|
* autoShow: true
|
|
17690
17706
|
* };
|