Set style attribute correctly when spread attr present

pull/1684/head
Christian Kaisermann 6 years ago
parent f38bdaaadf
commit 54dc1e5849

@ -87,7 +87,9 @@ export function setAttribute(node, attribute, value) {
export function setAttributes(node, attributes) {
for (var key in attributes) {
if (key in node) {
if (key === 'style') {
node.style.cssText = attributes[key];
} else if (key in node) {
node[key] = attributes[key];
} else {
if (attributes[key] === undefined) removeAttribute(node, key);
@ -238,4 +240,4 @@ export function addResizeListener(element, fn) {
element.removeChild(object);
}
};
}
}

Loading…
Cancel
Save