1
0
Fork 0

tada: Initial commit

This commit is contained in:
Joost De Cock 2018-12-22 14:45:07 +01:00
parent 90f088c6d0
commit 89de4d4499
14 changed files with 10335 additions and 1 deletions

View file

@ -0,0 +1,15 @@
import button from "./button";
import buttonhole from "./buttonhole";
import { name, version } from "../package.json";
export default {
name: name,
version: version,
hooks: {
preRender: function(svg) {
if (svg.attributes.get("freesewing:plugin-buttons") === false)
svg.attributes.set("freesewing:plugin-buttons", version);
svg.defs += button+buttonhole;
}
}
};