mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
cd07ec841d
This allows jQuery to be successfully loaded from a web worker since it does not have a document or window object by default. Previously it would log about missing methods and properties. Closes #228
5 lines
86 B
CoffeeScript
5 lines
86 B
CoffeeScript
module.exports =
|
|
load: ->
|
|
$ = require 'jquery'
|
|
callTaskMethod('loaded', $?)
|