From a2714debe69bf74743d7d077b2953751182264b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=B0=D0=B2=D1=80=D1=91=D0=BD=D0=BE=D0=B2=20=D0=90?= =?UTF-8?q?=D0=BD=D1=82=D0=BE=D0=BD?= Date: Mon, 13 Jan 2014 00:46:18 +0800 Subject: [PATCH] evt and bubble is optional --- src/Node.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Node.js b/src/Node.js index 8cd8bff4..06c807ce 100644 --- a/src/Node.js +++ b/src/Node.js @@ -1032,8 +1032,8 @@ * @method * @memberof Kinetic.Node.prototype * @param {String} eventType event type. can be a regular event, like click, mouseover, or mouseout, or it can be a custom event, like myCustomEvent - * @param {EventObject} evt event object - * @param {Boolean} bubble setting the value to false, or leaving it undefined, will result in the event + * @param {EventObject} [evt] event object + * @param {Boolean} [bubble] setting the value to false, or leaving it undefined, will result in the event * not bubbling. Setting the value to true will result in the event bubbling. * @returns {Kinetic.Node} * @example