summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2013-04-09 14:11:32 +0200
committerjmoenig <jens@moenig.org>2013-04-09 14:11:32 +0200
commitd4d537c186e68790faf22d3eda46e0d154e230fe (patch)
tree407e7e6cb038d50ce584c7f166c563fadcda6474
parentafe62246d605e97cee16e085a84cf800f678bff9 (diff)
downloadsnap-d4d537c186e68790faf22d3eda46e0d154e230fe.tar.gz
snap-d4d537c186e68790faf22d3eda46e0d154e230fe.zip
Feedback msg when sharing / unsharing projects
-rw-r--r--gui.js2
-rwxr-xr-xhistory.txt1
2 files changed, 3 insertions, 0 deletions
diff --git a/gui.js b/gui.js
index 6689eaa..ab7ba56 100644
--- a/gui.js
+++ b/gui.js
@@ -4028,6 +4028,7 @@ ProjectDialogMorph.prototype.shareProject = function () {
) + '\n"' + proj.ProjectName + '"?',
'Share Project',
function () {
+ myself.ide.showMessage('sharing\nproject...');
SnapCloud.reconnect(
function () {
SnapCloud.callService(
@@ -4065,6 +4066,7 @@ ProjectDialogMorph.prototype.unshareProject = function () {
) + '\n"' + proj.ProjectName + '"?',
'Unshare Project',
function () {
+ myself.ide.showMessage('unsharing\nproject...');
SnapCloud.reconnect(
function () {
SnapCloud.callService(
diff --git a/history.txt b/history.txt
index 0fa9047..bdc3b26 100755
--- a/history.txt
+++ b/history.txt
@@ -1604,3 +1604,4 @@ ______
* Morphic: Formatting options for Triggers and MenuItems (and ListItems): bold, italic
* Morphic: ListMorph (items) manipulation capabilites
* GUI: display shared project names bold typed in the project dialog
+* GUI: Feedback msg when sharing / unsharing projects