Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit f2cad93

Browse files
author
Francois-Xavier Gentilhomme
committed
v1.0.8 Repair undo/redo stack
1 parent 1a9cc59 commit f2cad93

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "myscript",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"main": "./dist/myscript.js",
55
"description": "MyScriptJS is a free and open-source JavaScript library providing the easiest way to use MyScript Cloud handwriting recognition in your web app",
66
"keywords": [

dist/myscript.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/myscript.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/myscript.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/myscript.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "myscript",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"main": "./dist/myscript.js",
55
"description": "MyScriptJS is a free and open-source JavaScript library providing the easiest way to use MyScript Cloud handwriting recognition in your web app",
66
"keywords": [

src/common/inkManager.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
*/
4545
InkManager.prototype.startInkCapture = function (x, y, t) {
4646
if (!this.writing) {
47-
if (this.isRedoEmpty()) {
47+
if (!this.isRedoEmpty()) {
4848
this.clearUndoRedoStack();
4949
}
5050
this.currentStroke = new scope.Stroke();

0 commit comments

Comments
 (0)