diff options
| author | Hardmath123 <hardmath123@gmail.com> | 2014-06-03 15:32:41 -0700 |
|---|---|---|
| committer | Hardmath123 <hardmath123@gmail.com> | 2014-06-03 15:32:41 -0700 |
| commit | f5fca5418765f1783e056de82072351d144adb50 (patch) | |
| tree | 685787fabceb098accfe939a7de67651c2632265 | |
| parent | 6d9ce7b61c61ff737133dd3490c6caf854793f04 (diff) | |
| download | snap-yow-f5fca5418765f1783e056de82072351d144adb50.tar.gz snap-yow-f5fca5418765f1783e056de82072351d144adb50.zip | |
Docs, symbols
| -rw-r--r-- | paint.js | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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(); |
