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. * }, * } * })