We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87fadcf commit 5e64876Copy full SHA for 5e64876
1 file changed
lib/ace/worker/worker.js
@@ -2,7 +2,12 @@
2
3
var console = {
4
log: function(msgs) {
5
- postMessage({type: "log", data: arguments.join(" ")});
+ msgs = Array.prototype.slice.call(arguments, 0);
6
+ postMessage({type: "log", data: msgs});
7
+ },
8
+ error: function(msgs) {
9
10
11
}
12
};
13
var window = {
0 commit comments