Changeset 1325

Show
Ignore:
Timestamp:
02/24/08 11:04:19 (8 months ago)
Author:
bob@redivi.com
Message:

move comment to appropriate branch #288

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • mochikit/trunk/MochiKit/DOM.js

    r1319 r1325  
    11101110            var filter = m.filter; 
    11111111            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                ***/ 
    11121119                return filter(attributeArray.ignoreAttrFilter, node.attributes); 
    11131120            }; 
     
    11361143        } else { 
    11371144            attributeArray = function (node) { 
    1138                 /*** 
    1139  
    1140                     Return an array of attributes for a given node, 
    1141                     filtering out attributes that don't belong for 
    1142                     that are inserted by "Certain Browsers". 
    1143  
    1144                 ***/ 
    11451145                return node.attributes; 
    11461146            };