fixing image library regression

This commit is contained in:
Danny Yoo 2011-08-19 16:03:42 -04:00
parent 067a580afd
commit fb435b9ce7
2 changed files with 9 additions and 1 deletions

View File

@ -615,3 +615,10 @@
"(step-count? 0)"
(step-count? 0)
(beside/align "top"
(rectangle 20 100 "solid" "black")
(rectangle 20 120 "solid" "black")
(rectangle 20 80 "solid" "black"))

View File

@ -19,6 +19,7 @@
StandardOutputPort.prototype = baselib.heir(OutputPort.prototype);
StandardOutputPort.prototype.writeDomNode = function (MACHINE, domNode) {
MACHINE.params['currentDisplayer'](MACHINE, domNode);
$(domNode).trigger({type : 'afterAttach'});
$('*', domNode).trigger({type : 'afterAttach'});
};
@ -28,6 +29,7 @@
StandardErrorPort.prototype = baselib.heir(OutputPort.prototype);
StandardErrorPort.prototype.writeDomNode = function (MACHINE, domNode) {
MACHINE.params['currentErrorDisplayer'](MACHINE, domNode);
$(domNode).trigger({type : 'afterAttach'});
$('*', domNode).trigger({type : 'afterAttach'});
};
@ -35,7 +37,6 @@
var OutputStringPort = function () {
this.buf = [];
};