fixing image library regression
This commit is contained in:
parent
067a580afd
commit
fb435b9ce7
|
@ -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"))
|
||||
|
|
|
@ -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 = [];
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user