diff --git a/dist/all.js b/dist/all.js index 8f2ff10f..0b481deb 100644 --- a/dist/all.js +++ b/dist/all.js @@ -11214,7 +11214,7 @@ fabric.util.object.extend(fabric.Object.prototype, /** @lends fabric.Object.prot /** * Returns true if object state (one of its state properties) was changed - * @return {Boolean} true if instance' state has changed since `saveState` was called + * @return {Boolean} true if instance' state has changed since `{@link fabric.Object#saveState}` was called */ hasStateChanged: function() { return this.stateProperties.some(function(prop) { @@ -16006,7 +16006,7 @@ fabric.Image.filters.Pixelate.fromObject = function(object) { useNative: true, /** - * List of properties to consider when checking if state of an object is changed (fabric.Object#hasStateChanged) + * List of properties to consider when checking if state of an object is changed ({@link fabric.Object#hasStateChanged}) * as well as for history (undo/redo) purposes * @type Array */ diff --git a/dist/all.min.js.gz b/dist/all.min.js.gz index fd28c062..3539ba96 100644 Binary files a/dist/all.min.js.gz and b/dist/all.min.js.gz differ diff --git a/src/stateful.mixin.js b/src/stateful.mixin.js index 8dc9994e..90a289c5 100644 --- a/src/stateful.mixin.js +++ b/src/stateful.mixin.js @@ -5,7 +5,7 @@ fabric.util.object.extend(fabric.Object.prototype, /** @lends fabric.Object.prot /** * Returns true if object state (one of its state properties) was changed - * @return {Boolean} true if instance' state has changed since `saveState` was called + * @return {Boolean} true if instance' state has changed since `{@link fabric.Object#saveState}` was called */ hasStateChanged: function() { return this.stateProperties.some(function(prop) { diff --git a/src/text.class.js b/src/text.class.js index 9cd73d45..a4ab9e21 100644 --- a/src/text.class.js +++ b/src/text.class.js @@ -142,7 +142,7 @@ useNative: true, /** - * List of properties to consider when checking if state of an object is changed (fabric.Object#hasStateChanged) + * List of properties to consider when checking if state of an object is changed ({@link fabric.Object#hasStateChanged}) * as well as for history (undo/redo) purposes * @type Array */