mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Switch to using createRange for element comparision instead of Array indexOf checks - thanks for the tip, Ioseb.
This commit is contained in:
parent
4b7e1c906f
commit
d8b3bd700f
@ -692,20 +692,22 @@ if ( document.documentElement.compareDocumentPosition ) {
|
||||
}
|
||||
return ret;
|
||||
};
|
||||
} else if ( Array.prototype.indexOf ) {
|
||||
var indexOf = Array.prototype.indexOf,
|
||||
allSort = document.getElementsByTagName("*");
|
||||
|
||||
} else if ( "sourceIndex" in document.documentElement ) {
|
||||
sortOrder = function( a, b ) {
|
||||
var ret = indexOf.call( allSort, a ) - indexOf.call( allSort, b );
|
||||
var ret = a.sourceIndex - b.sourceIndex;
|
||||
if ( ret === 0 ) {
|
||||
hasDuplicate = true;
|
||||
}
|
||||
return ret;
|
||||
};
|
||||
} else if ( "sourceIndex" in document.documentElement ) {
|
||||
} else if ( document.createRange ) {
|
||||
sortOrder = function( a, b ) {
|
||||
var ret = a.sourceIndex - b.sourceIndex;
|
||||
var aRange = a.ownerDocument.createRange(), bRange = b.ownerDocument.createRange();
|
||||
aRange.selectNode(a);
|
||||
aRange.collapse(true);
|
||||
bRange.selectNode(b);
|
||||
bRange.collapse(true);
|
||||
var ret = aRange.compareBoundaryPoints(Range.START_TO_END, bRange);
|
||||
if ( ret === 0 ) {
|
||||
hasDuplicate = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user