Skip to content

Commit

Permalink
Tinny fixes: Now supporting sync for drag/move as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
muaz-khan committed May 16, 2016
1 parent 70a4a85 commit 40ccdb8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ Now type your own language text in any `<input>` box or anywhere, and simply cop

Now click `T` tool icon from the tool-box and press `ctrl+v` to paste your own language's text.

To repeat it:
**To repeat it:**

1. Write your own language texts anywhere and make sure to copy to clipboard using `ctrl+v`
2. Then click `T` icon, and try press `ctrl+v` to paste your copied text
1. Type your own language texts anywhere and make sure to copy to clipboard using `ctrl+v`
2. Then click `T` icon, and then press `ctrl+v` to paste your copied text

You can paste any text: English, Arabic, Chinese or whatever!
You can paste any text: English, Arabic, Chinese etc.

# How to Use

Expand Down
2 changes: 1 addition & 1 deletion dev/draw-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var drawHelper = {
}

if (!skipSync && typeof syncPoints !== 'undefined') {
syncPoints();
syncPoints(is.isDragAllPaths || is.isDragLastPath ? true : false);
}
},
getOptions: function(opt) {
Expand Down
4 changes: 2 additions & 2 deletions widget.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Last time updated: 2016-05-10 6:26:39 AM UTC
// Last time updated: 2016-05-16 3:58:53 AM UTC

// _______________
// Canvas-Designer
Expand Down Expand Up @@ -1069,7 +1069,7 @@
}

if (!skipSync && typeof syncPoints !== 'undefined') {
syncPoints();
syncPoints(is.isDragAllPaths || is.isDragLastPath ? true : false);
}
},
getOptions: function(opt) {
Expand Down
4 changes: 2 additions & 2 deletions widget.min.js

Large diffs are not rendered by default.

0 comments on commit 40ccdb8

Please sign in to comment.