Changeset 10531
- Timestamp:
- 09/17/07 00:07:56 (14 months ago)
- Files:
-
- 1 modified
-
dijit/trunk/_Widget.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/_Widget.js
r10529 r10531 44 44 45 45 // attributeMap: Object 46 // A map of attributes -- typically standard HTML attributes -- to transfer47 // from the parsed node into the new dom, at the widget's domNode, by default.46 // A map of attributes and attachpoints -- typically standard HTML attributes -- to set 47 // on the widget's dom, at the "domNode" attach point, by default. 48 48 // Other node references can be specified as properties of 'this' 49 49 attributeMap: {id:"", dir:"", lang:"", "class":"", style:"", title:""}, // TODO: add on* handlers? … … 129 129 break; 130 130 case "style": 131 domValue = domValue.cssText; // FIXME: Opera131 domValue = node.cssText; // FIXME: Opera 132 132 } 133 133 if(domValue){