mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-02 21:36:11 +03:00
Replace filter with a for loop.
This commit is contained in:
parent
fd15789f6f
commit
c3a65bab38
1 changed files with 8 additions and 3 deletions
|
@ -325,10 +325,15 @@
|
|||
*/
|
||||
getActivePointersListExceptType: function ( type ) {
|
||||
var delegate = THIS[ this.hash ];
|
||||
var listArray = [];
|
||||
|
||||
return delegate.activePointersLists.filter(function(pointersList) {
|
||||
return pointersList.type !== type;
|
||||
});
|
||||
for (var i = 0; i < delegate.activePointersLists.length; ++i) {
|
||||
if (delegate.activePointersLists[i].type !== type) {
|
||||
listArray.push(delegate.activePointersLists[i]);
|
||||
}
|
||||
}
|
||||
|
||||
return listArray;
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue