Skip to content

Commit

Permalink
new x11 mode asm
Browse files Browse the repository at this point in the history
  • Loading branch information
soliton4 committed Jan 8, 2015
1 parent d99a368 commit edd903a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-mirror",
"version": "0.1.36",
"version": "0.1.37",
"author": {
"name": "Matthias Behrens",
"email": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion src/avc/Wgt.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ define([
, decode: function(data){
try{
if (this.useWorker){
this.worker.postMessage(data); // Send data to our worker.
this.worker.postMessage(data.buffer, [data.buffer]); // Send data to our worker.
}else{
this.avc.decode(data);
};
Expand Down
2 changes: 1 addition & 1 deletion src/avc/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ var evtFun = function(data){
avc.configure(data);

evtFun = function(data){
avc.decode(data);
avc.decode(new Uint8Array(data));
};

};
Expand Down

0 comments on commit edd903a

Please sign in to comment.