diff options
author | Fuzzy <ulima.ums@googlemail.com> | 2015-02-22 00:55:04 +0100 |
---|---|---|
committer | Fuzzy <ulima.ums@googlemail.com> | 2015-02-22 00:55:04 +0100 |
commit | 812b27b3fc8589988b588a19e901b0c5704d873d (patch) | |
tree | 240ecad3bc8d257147c145ff981ca52cd463612e | |
parent | 93c7b3af51c68f3d2cb37ff41c0eb941e1b81df6 (diff) | |
parent | c3eb2591d2d5e3523c8e04ce263fcf55b31c861c (diff) | |
download | svg.js-812b27b3fc8589988b588a19e901b0c5704d873d.tar.gz svg.js-812b27b3fc8589988b588a19e901b0c5704d873d.zip |
Merge pull request #273 from dotob/patch-1
add missing add in function params
-rwxr-xr-x | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2395,7 +2395,7 @@ path.marker('end', 20, 20, function(add) { The `marker()` method can be used in three ways. Firstly, a marker can be created on any container element (e.g. svg, nested, group, ...). This is useful if you plan to reuse the marker many times so it will create a marker in the defs but not show it yet: ```javascript -var marker = draw.marker(10, 10, function() { +var marker = draw.marker(10, 10, function(add) { add.rect(10, 10) }) ``` @@ -2403,7 +2403,7 @@ var marker = draw.marker(10, 10, function() { Secondly a marker can be created and applied directly on its target element: ```javascript -path.marker('start', 10, 10, function() { +path.marker('start', 10, 10, function(add) { add.circle(10).fill('#f06') }) ``` |