diff --git a/gui.js b/gui.js index e04ad41b..6c08e07e 100644 --- a/gui.js +++ b/gui.js @@ -4825,7 +4825,6 @@ IDE_Morph.prototype.setLanguage = function (lang, callback) { myself.reflectLanguage(lang, callback); }; document.head.appendChild(translation); - console.log(translation) translation.src = src; }; diff --git a/stitchcode/gui.js b/stitchcode/gui.js index 121e8ff5..ea98fe77 100644 --- a/stitchcode/gui.js +++ b/stitchcode/gui.js @@ -141,6 +141,16 @@ IDE_Morph.prototype.buildPanes = function () { }; +StageHandleMorph.prototype.init = function (target) { + this.target = target || null; + HandleMorph.uber.init.call(this); + this.color = MorphicPreferences.isFlat ? + new Color(125, 125, 125) : new Color(190, 190, 190); + this.isDraggable = false; + this.noticesTransparentClick = true; + this.setExtent(new Point(12, 50)); +}; + IDE_Morph.prototype.origSetStageExtent = IDE_Morph.prototype.setStageExtent; IDE_Morph.prototype.setStageExtent = function (aPoint) { this.origSetStageExtent(aPoint); diff --git a/stitchcode/store.js b/stitchcode/store.js index 7a811734..00771965 100644 --- a/stitchcode/store.js +++ b/stitchcode/store.js @@ -14,9 +14,7 @@ SnapSerializer.prototype.openProject = function (project, ide) { ide.origCreator = project.origCreator || ''; ide.creator = project.creator || ''; ide.remixHistory = project.remixHistorycreat || ''; - - console.log("name: " + ide.projectName + ", creator: " + ide.creator + ", origName: " + ide.origName + ", origCreator: " + ide.origCreator); - + //console.log("name: " + ide.projectName + ", creator: " + ide.creator + ", origName: " + ide.origName + ", origCreator: " + ide.origCreator); if (ide.globalVariables) { ide.globalVariables = project.globalVariables; }