- Allow `addSvgElementFromJson` to accept non-SVG namespaces with explicit
`namespace` property as well as the default SVG namespace (fixes #155); documentmaster
parent
28ba66d98d
commit
54d6fd41b6
|
@ -248,10 +248,11 @@ const getJsonFromSvgElement = this.getJsonFromSvgElement = function (data) {
|
||||||
* The element will be ran through cleanupElement before being returned
|
* The element will be ran through cleanupElement before being returned
|
||||||
*
|
*
|
||||||
* @param data - Object with the following keys/values:
|
* @param data - Object with the following keys/values:
|
||||||
* @param data.element - tag name of the SVG element to create
|
* @param {String} data.element - tag name of the SVG element to create
|
||||||
* @paramdata.attr - Object with attributes key-values to assign to the new element
|
* @param {Object} data.attr - Has key-value attributes to assign to the new element
|
||||||
* @param data.curStyles - Boolean indicating that current style attributes should be applied first
|
* @param {Boolean} [data.curStyles] - Indicates whether current style attributes should be applied first
|
||||||
* @param data.children - Optional array with data objects to be added recursively as children
|
* @param {Array} [data.children] - Data objects to be added recursively as children
|
||||||
|
* @param {String} [data.namespace="http://www.w3.org/2000/svg"] - Indicate a (non-SVG) namespace
|
||||||
*
|
*
|
||||||
* @returns The new element
|
* @returns The new element
|
||||||
*/
|
*/
|
||||||
|
@ -266,7 +267,8 @@ const addSvgElementFromJson = this.addSvgElementFromJson = function (data) {
|
||||||
shape = null;
|
shape = null;
|
||||||
}
|
}
|
||||||
if (!shape) {
|
if (!shape) {
|
||||||
shape = svgdoc.createElementNS(NS.SVG, data.element);
|
const ns = data.namespace || NS.SVG;
|
||||||
|
shape = svgdoc.createElementNS(ns, data.element);
|
||||||
if (currentLayer) {
|
if (currentLayer) {
|
||||||
(currentGroup || currentLayer).appendChild(shape);
|
(currentGroup || currentLayer).appendChild(shape);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue