summaryrefslogtreecommitdiffstats
path: root/js/vendor/jquery/src/traversing.js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-12-23 12:50:15 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-12-23 12:50:15 +0100
commitf88f8fcb7f7451babc8aa20ecc0dad06dd27e1ed (patch)
treecb53495565d3a5757b6efc44c179b6d95b244721 /js/vendor/jquery/src/traversing.js
parent367a4eed30e9fa77a2aa5d7924f041e967f8567d (diff)
update jasmine, karma and angular
Diffstat (limited to 'js/vendor/jquery/src/traversing.js')
-rw-r--r--js/vendor/jquery/src/traversing.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/js/vendor/jquery/src/traversing.js b/js/vendor/jquery/src/traversing.js
index 943d16cb6..d9ff0aeac 100644
--- a/js/vendor/jquery/src/traversing.js
+++ b/js/vendor/jquery/src/traversing.js
@@ -8,7 +8,7 @@ define([
], function( jQuery, indexOf, rneedsContext ) {
var rparentsprev = /^(?:parents|prev(?:Until|All))/,
- // methods guaranteed to produce a unique set when starting from a unique set
+ // Methods guaranteed to produce a unique set when starting from a unique set
guaranteedUnique = {
children: true,
contents: true,
@@ -88,8 +88,7 @@ jQuery.fn.extend({
return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );
},
- // Determine the position of an element within
- // the matched set of elements
+ // Determine the position of an element within the set
index: function( elem ) {
// No argument, return index in parent
@@ -97,7 +96,7 @@ jQuery.fn.extend({
return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
}
- // index in selector
+ // Index in selector
if ( typeof elem === "string" ) {
return indexOf.call( jQuery( elem ), this[ 0 ] );
}