From 691bf49d1e82dfd9bd4daae0cfed8137e9904b39 Mon Sep 17 00:00:00 2001 From: Luis Leiva Date: Sun, 17 Dec 2017 23:19:42 +0100 Subject: [PATCH] Updated animate events docs --- jquery.sketchable.animate.js | 4 ++-- sketchable.animate.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/jquery.sketchable.animate.js b/jquery.sketchable.animate.js index d89a091..871de49 100644 --- a/jquery.sketchable.animate.js +++ b/jquery.sketchable.animate.js @@ -154,13 +154,13 @@ * jqueryElem.sketchable('config', { * events: { * animationstart: function(elem, data) { - * // Animation started. + * // Animation started: the first stroke is being drawn. * }, * animationstep: function(elem, data) { * // Animation steped: a new stroke is being drawn. * }, * animationend: function(elem, data) { - * // Animation ended. + * // Animation ended: the last stroke has been drawn. * }, * } * }) diff --git a/sketchable.animate.js b/sketchable.animate.js index 9621367..d7785e1 100644 --- a/sketchable.animate.js +++ b/sketchable.animate.js @@ -156,13 +156,13 @@ * sketchableInstance.config({ * events: { * animationstart: function(elem, data) { - * // Animation started. + * // Animation started: the first stroke is being drawn. * }, * animationstep: function(elem, data) { * // Animation steped: a new stroke is being drawn. * }, * animationend: function(elem, data) { - * // Animation ended. + * // Animation ended: the last stroke has been drawn. * }, * } * })