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