From 9bebdcade7c23a2bd88c9ebeadd6a3fc1ff15af1 Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Thu, 8 Feb 2018 00:29:51 -0800 Subject: [PATCH] update cloud URL options for testing. --- gui.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gui.js b/gui.js index 5d9441f9..0c1fbc9f 100644 --- a/gui.js +++ b/gui.js @@ -5484,8 +5484,9 @@ IDE_Morph.prototype.setCloudURL = function () { this.world(), null, { - 'Snap!Cloud' : - 'https://snap.apps.miosoft.com/SnapCloud' + 'Snap!Cloud' : 'https://snap-cloud.cs10.org', + 'localhost' : 'http://localhost:8080', + 'localhost (secure)' : 'https://localhost:8080' } ); }; @@ -6125,7 +6126,7 @@ ProjectDialogMorph.prototype.installCloudProjectList = function (pl) { // we ask for the thumbnail when selecting a project SnapCloud.getThumbnail( null, // username is implicit - item.projectname, + item.projectname, function (thumbnail) { myself.preview.texture = thumbnail; myself.preview.cachedTexture = null; @@ -6333,7 +6334,7 @@ ProjectDialogMorph.prototype.deleteProject = function () { myself.installCloudProjectList( myself.projectList ); // refresh list - }, + }, myself.ide.cloudError() ); }