Merge pull request #758 from digitarald/fix-worker-bind

Removed unnecessary .bind in worker_loader.js that broke Safari
This commit is contained in:
notmasteryet 2011-11-05 17:19:41 -07:00
commit ac6d4ddb54

View File

@ -49,4 +49,4 @@ function onMessageLoader(evt) {
}
}
this.onmessage = onMessageLoader.bind(this);
this.onmessage = onMessageLoader;