Ticket #3929: style.patch
| File style.patch, 455 bytes (added by guest, 18 months ago) |
|---|
-
src/html/style.js
68 68 node.className = cs; 69 69 }else if(node.setAttribute){ 70 70 node.setAttribute("class", classStr); 71 node.className = cs; 71 // try to also set the node className directly, redundantly? 72 try { node.className = cs; } catch (e) { } 72 73 }else{ 73 74 return false; 74 75 }