1
0
Fork 0

Replaced path.addClass(...) with path.setClass(...) in the example.

This commit is contained in:
Thrunic 2023-12-08 13:28:42 -05:00
parent cf127d083e
commit 4ecbbbddb0

View file

@ -38,5 +38,5 @@ as the two following calls yield the same result:
```js
path.attr('class', 'fabric', true)
path.addClass('fabric')
path.setClass('fabric')
```