From 51e300b5585c6f540ec37487f7ae60e763c3a18b Mon Sep 17 00:00:00 2001 From: Brian Schiller Date: Fri, 29 Sep 2017 10:54:40 -0600 Subject: [PATCH] move the run and other active code buttons to the bottom Students commented that it is difficult to click run, then quickly scroll down past the code to the output to see it. Sometimes this is an issue because input() triggers an alerts, which block scrolling. Other times, it is an issue because turtles begin moving and we don't get to see the very beginning of the motion. --- runestone/activecode/js/activecode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runestone/activecode/js/activecode.js b/runestone/activecode/js/activecode.js index b3780416c..0a38350bd 100755 --- a/runestone/activecode/js/activecode.js +++ b/runestone/activecode/js/activecode.js @@ -223,7 +223,7 @@ ActiveCode.prototype.createControls = function () { // lc mod // the control button go inside the container for the code // rather than outside above it - $(this.codeDiv).prepend(ctrlDiv); + $(this.codeDiv).append(ctrlDiv); };