From 4d037e979ae692f039b407b846d9704303fb5b25 Mon Sep 17 00:00:00 2001 From: kangax Date: Thu, 4 Apr 2013 12:51:47 +0200 Subject: [PATCH] Document strokeDashArray on fabric.Rect --- src/rect.class.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/rect.class.js b/src/rect.class.js index f6d6d317..763d20e1 100644 --- a/src/rect.class.js +++ b/src/rect.class.js @@ -38,6 +38,13 @@ */ ry: 0, + /** + * Used to specify dash pattern for stroke on this object + * @property + * @type Array + */ + strokeDashArray: null, + /** * Constructor * @method initialize @@ -309,4 +316,4 @@ return new fabric.Rect(object); }; -})(typeof exports !== 'undefined' ? exports : this); \ No newline at end of file +})(typeof exports !== 'undefined' ? exports : this);