mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 12:39:20 +03:00
35 lines
1.9 KiB
JavaScript
35 lines
1.9 KiB
JavaScript
var attrHtmlToJavaScriptMap = { 'class': 'className', 'for': 'htmlFor' };
|
|
ko.bindingHandlers['attr'] = {
|
|
'update': function(element, valueAccessor, allBindings) {
|
|
var value = ko.utils.unwrapObservable(valueAccessor()) || {};
|
|
ko.utils.objectForEach(value, function(attrName, attrValue) {
|
|
attrValue = ko.utils.unwrapObservable(attrValue);
|
|
|
|
// Find the namespace of this attribute, if any.
|
|
var prefixLen = attrName.indexOf(':');
|
|
var namespace = "lookupNamespaceURI" in element && prefixLen > 0 && element.lookupNamespaceURI(attrName.substr(0, prefixLen));
|
|
|
|
// To cover cases like "attr: { checked:someProp }", we want to remove the attribute entirely
|
|
// when someProp is a "no value"-like value (strictly null, false, or undefined)
|
|
// (because the absence of the "checked" attr is how to mark an element as not checked, etc.)
|
|
var toRemove = (attrValue === false) || (attrValue === null) || (attrValue === undefined);
|
|
if (toRemove) {
|
|
namespace ? element.removeAttributeNS(namespace, attrName) : element.removeAttribute(attrName);
|
|
} else {
|
|
attrValue = attrValue.toString();
|
|
}
|
|
|
|
if (!toRemove) {
|
|
namespace ? element.setAttributeNS(namespace, attrName, attrValue) : element.setAttribute(attrName, attrValue);
|
|
}
|
|
|
|
// Treat "name" specially - although you can think of it as an attribute, it also needs
|
|
// special handling on older versions of IE (https://github.com/SteveSanderson/knockout/pull/333)
|
|
// Deliberately being case-sensitive here because XHTML would regard "Name" as a different thing
|
|
// entirely, and there's no strong reason to allow for such casing in HTML.
|
|
if (attrName === "name") {
|
|
element.name = toRemove ? "" : attrValue;
|
|
}
|
|
});
|
|
}
|
|
};
|