You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traditionally 'Worker' mechanism supports JavaScript files to be executed directly by file path. ThreadJS uses an alternative approach by declaring Blobs with virtual URLs to define code to be executed on the fly. But Remote JavaScript support is also needed to provide support for browsers like IE10 and IE11.
Proposal:
Provide a mechanism to pass the URL of a remote JS file which includes the code for the Job.
e.g.
var threadInstance = new Thread({ data, jobURL: 'http://myfiles/', ..
and
var threadInstance = new Thread();
threadInstance.start(param, jobURL);
The text was updated successfully, but these errors were encountered:
Traditionally 'Worker' mechanism supports JavaScript files to be executed directly by file path. ThreadJS uses an alternative approach by declaring Blobs with virtual URLs to define code to be executed on the fly. But Remote JavaScript support is also needed to provide support for browsers like IE10 and IE11.
Proposal:
Provide a mechanism to pass the URL of a remote JS file which includes the code for the Job.
e.g.
var threadInstance = new Thread({ data, jobURL: 'http://myfiles/', ..
and
var threadInstance = new Thread();
threadInstance.start(param, jobURL);
The text was updated successfully, but these errors were encountered: