nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / jquery / src / traversing / var / siblings.js
1 define( function() {
2
3 return function( n, elem ) {
4         var matched = [];
5
6         for ( ; n; n = n.nextSibling ) {
7                 if ( n.nodeType === 1 && n !== elem ) {
8                         matched.push( n );
9                 }
10         }
11
12         return matched;
13 };
14
15 } );