Implement endInlineImage IR

This commit is contained in:
Julian Viereck 2011-09-08 17:55:38 -07:00
parent 7ee894c09c
commit a2bf701bfe
2 changed files with 71 additions and 76 deletions

View file

@ -37,16 +37,10 @@ MessageHandler.prototype = {
},
send: function(actionName, data) {
try {
this.comObj.postMessage({
action: actionName,
data: data
});
} catch (e) {
console.error("FAILED to send data from", this.name);
throw e;
}
this.comObj.postMessage({
action: actionName,
data: data
});
}
}