Changeset 1325
- Timestamp:
- 02/24/08 11:04:19 (8 months ago)
- Files:
-
- mochikit/trunk/MochiKit/DOM.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
mochikit/trunk/MochiKit/DOM.js
r1319 r1325 1110 1110 var filter = m.filter; 1111 1111 attributeArray = function (node) { 1112 /*** 1113 1114 Return an array of attributes for a given node, 1115 filtering out attributes that don't belong for 1116 that are inserted by "Certain Browsers". 1117 1118 ***/ 1112 1119 return filter(attributeArray.ignoreAttrFilter, node.attributes); 1113 1120 }; … … 1136 1143 } else { 1137 1144 attributeArray = function (node) { 1138 /***1139 1140 Return an array of attributes for a given node,1141 filtering out attributes that don't belong for1142 that are inserted by "Certain Browsers".1143 1144 ***/1145 1145 return node.attributes; 1146 1146 };
