Ticket #8048 (closed Bug: fixed)
setKssAttribute sets value to "undefined"
| Reported by: | b_mathieu | Owned by: | gotcha |
|---|---|---|---|
| Priority: | major | Milestone: | 3.1 |
| Component: | KSS (Ajax) | Keywords: | |
| Cc: | ree |
Description
from http://codespeak.net/svn/kukit/kukit.js/branch/1.4/kukit/dom.js:
dom.setKssAttribute = function(node, attrname, value) {
Sets a given kss attribute on the namespace var fullName = _kssAttrNamespace + ':' + attrname; dom.setAttribute(node, fullName);
};
last line should be: dom.setAttribute(node, fullName, value);
This bug is present in kss.core 1.2, 1.4, trunk.
Change History
comment:2 Changed 4 years ago by ree
- Owner changed from ree to godchap
- Status changed from assigned to new
Note: See
TracTickets for help on using
tickets.

Thanks for the report, I am aware of this issue, and have a fix already.
But to commit it, I'll also need to make a selenium tests, which I still don't have. Hopefully, I can make it before the 3.1 release deadline.