summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHardmath123 <hardmath123@gmail.com>2014-06-03 15:32:41 -0700
committerHardmath123 <hardmath123@gmail.com>2014-06-03 15:32:41 -0700
commitf5fca5418765f1783e056de82072351d144adb50 (patch)
tree685787fabceb098accfe939a7de67651c2632265
parent6d9ce7b61c61ff737133dd3490c6caf854793f04 (diff)
downloadsnap-yow-f5fca5418765f1783e056de82072351d144adb50.tar.gz
snap-yow-f5fca5418765f1783e056de82072351d144adb50.zip
Docs, symbols
-rw-r--r--paint.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/paint.js b/paint.js
index 12f4f82..d4d2954 100644
--- a/paint.js
+++ b/paint.js
@@ -53,6 +53,7 @@
Jan 08 - mouse leave dragging fix (Kartik)
Feb 11 - dynamically adjust to stage dimensions (Jens)
Apr 30 - localizations (Manuel)
+ June 3 - transformations (Kartik)
*/
@@ -66,7 +67,7 @@
// Global stuff ////////////////////////////////////////////////////////
-modules.paint = '2014-May-02';
+modules.paint = '2014-June-3';
// Declarations
@@ -233,11 +234,11 @@ PaintEditorMorph.prototype.buildScaleBox = function () {
function () {paper.scale(-0.05, -0.05); }
));
this.scaleBox.add(this.pushButton(
- "flipX",
+ "flip ↔",
function () {paper.scale(-2, 0); }
));
this.scaleBox.add(this.pushButton(
- "flipY",
+ "flip ↕",
function () {paper.scale(0, -2); }
));
this.scaleBox.fixLayout();