Skip to content

Commit

Permalink
in browser v0.7.3 in app v1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
krmanik committed Oct 12, 2020
1 parent 2774fca commit be35f19
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions android/app/src/main/assets/www/common.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@
<div class="label-design1"><b>Some Tips</b></div>

<div class="help-side-nav-text">
1. Last created rectangle can be drag even if draw button enabled.
2. When draw button enabled, and want to select other rectangles, then first disable draw button select.
3. Use pinch to zoom for resizing small rectangles.
1. Last created rectangle can be dragged even if draw button enabled.
<br>2. When draw button enabled, and want to select other rectangles, then first disable draw button then select other rectangles.
<br>3. Use pinch to zoom for resizing small rectangles.
</div>


Expand Down
6 changes: 3 additions & 3 deletions docs/common.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@
<div class="label-design1"><b>Some Tips</b></div>

<div class="help-side-nav-text">
1. Last created rectangle can be drag even if draw button enabled.
2. When draw button enabled, and want to select other rectangles, then first disable draw button select.
3. Use pinch to zoom for resizing small rectangles.
1. Last created rectangle can be dragged even if draw button enabled.
<br>2. When draw button enabled, and want to select other rectangles, then first disable draw button then select other rectangles.
<br>3. Use pinch to zoom for resizing small rectangles.
</div>

<hr class="thin">
Expand Down
4 changes: 3 additions & 1 deletion docs/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,12 @@ function drawRectWhenEnabled() {

draw.rect().draw().fill(originalColor)
.on('drawstop', function () {
if (this != null) {
this
.selectize()
.draggable()
.selectize()
.resize()
}
})
.on('drawstart', function () {
if (!canDraw) {
Expand Down

0 comments on commit be35f19

Please sign in to comment.