Update extensions for new SVG-Edit API
This commit is contained in:
parent
9636cab11e
commit
c946c331e1
|
@ -8,8 +8,7 @@
|
|||
*/
|
||||
|
||||
|
||||
$(function() {
|
||||
svgCanvas.addExtension("Arrows", function(S) {
|
||||
svgEditor.addExtension("Arrows", function(S) {
|
||||
var svgcontent = S.svgcontent,
|
||||
addElem = S.addSvgElementFromJson,
|
||||
nonce = S.nonce,
|
||||
|
@ -294,5 +293,4 @@ $(function() {
|
|||
|
||||
}
|
||||
};
|
||||
});
|
||||
});
|
||||
|
|
|
@ -9,8 +9,7 @@
|
|||
|
||||
// This extension adds a simple button to the contextual panel for paths
|
||||
// The button toggles whether the path is open or closed
|
||||
$(function() {
|
||||
svgCanvas.addExtension("ClosePath", function(S) {
|
||||
svgEditor.addExtension("ClosePath", function(S) {
|
||||
var selElems,
|
||||
updateButton = function(path) {
|
||||
var seglist = path.pathSegList,
|
||||
|
@ -90,5 +89,4 @@ $(function() {
|
|||
}
|
||||
}
|
||||
};
|
||||
});
|
||||
});
|
||||
|
|
|
@ -8,8 +8,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
$(function() {
|
||||
svgCanvas.addExtension("foreignObject", function(S) {
|
||||
svgEditor.addExtension("foreignObject", function(S) {
|
||||
var svgcontent = S.svgcontent,
|
||||
addElem = S.addSvgElementFromJson,
|
||||
selElems,
|
||||
|
@ -275,5 +274,4 @@ $(function() {
|
|||
var elem = opts.elems[0];
|
||||
}
|
||||
};
|
||||
});
|
||||
});
|
||||
|
|
|
@ -13,8 +13,7 @@
|
|||
user the point on the canvas that was clicked on.
|
||||
*/
|
||||
|
||||
$(function() {
|
||||
svgCanvas.addExtension("Hello World", function() {
|
||||
svgEditor.addExtension("Hello World", function() {
|
||||
|
||||
return {
|
||||
name: "Hello World",
|
||||
|
@ -75,6 +74,5 @@ $(function() {
|
|||
}
|
||||
}
|
||||
};
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
@ -8,8 +8,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
$(function() {
|
||||
svgCanvas.addExtension("itex", function(S) {
|
||||
svgEditor.addExtension("itex", function(S) {
|
||||
var svgcontent = S.svgcontent,
|
||||
addElem = S.addSvgElementFromJson,
|
||||
selElems,
|
||||
|
@ -302,5 +301,4 @@ $(function() {
|
|||
var elem = opts.elems[0];
|
||||
}
|
||||
};
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue