Skip to content

Commit

Permalink
fadeOut appears to be changed or broken. revert to simple hide.
Browse files Browse the repository at this point in the history
Signed-off-by: Brad Miller <bonelake@gmail.com>
  • Loading branch information
bnmnetp committed Sep 21, 2012
1 parent 4334591 commit 7cc8169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/turtle/__init__.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ if (! TurtleGraphics) {
$(this.canvas).click(function() {
if (! theCanvas.isAnimating()) {
if (Sk.tg.fadeOnExit) // Let's this be configurable
$("#"+canvas_id).fadeOut();
$("#"+canvas_id).hide();
$("#"+canvas_id).unbind('click');
Sk.tg.canvasInit = false;
delete Sk.tg.canvasLib[canvas_id];
Expand Down

0 comments on commit 7cc8169

Please sign in to comment.