update master to V7

This commit is contained in:
JFH
2021-05-09 19:29:45 +02:00
parent 41fc05672d
commit 593c415664
1000 changed files with 47537 additions and 54304 deletions

View File

@@ -8,7 +8,7 @@ the SVG file differently:
### Example
```js
svgEditor.setCustomHandlers({
save (win, data) {
save (_win, _data) {
// Save svg
}
});

View File

@@ -27,7 +27,7 @@ This is the general format for an extension:
```js
export default {
name: 'extensionname',
init (methods) {
init (_methods) {
return extensionData;
}
};
@@ -83,7 +83,7 @@ export default {
mouseDown () {
// ...
},
mouseUp (opts) {
mouseUp (_opts) {
// ...
}
};