diff options
author | Thomas Park <thomas@thomaspark.me> | 2015-01-22 22:36:20 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2015-01-22 22:36:20 -0500 |
commit | 25f57ee1fe9773b08d95d5f7d6ba93e2db048f8f (patch) | |
tree | 8e4448eed6bce0fa1288321e18c2b4675b8cb393 /bower_components/jquery/src/core | |
parent | 0a7f9e5bb684c185d309d1ac1079dfb8b36af33c (diff) |
update bootstrap to 3.3.2
Diffstat (limited to 'bower_components/jquery/src/core')
-rw-r--r-- | bower_components/jquery/src/core/init.js | 6 | ||||
-rw-r--r-- | bower_components/jquery/src/core/ready.js | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/bower_components/jquery/src/core/init.js b/bower_components/jquery/src/core/init.js index daf5d190..7e83a049 100644 --- a/bower_components/jquery/src/core/init.js +++ b/bower_components/jquery/src/core/init.js @@ -38,7 +38,7 @@ var rootjQuery, if ( match[1] ) { context = context instanceof jQuery ? context[0] : context; - // scripts is true for back-compat + // Option to run scripts is true for back-compat // Intentionally let the error be thrown if parseHTML is not present jQuery.merge( this, jQuery.parseHTML( match[1], @@ -66,8 +66,8 @@ var rootjQuery, } else { elem = document.getElementById( match[2] ); - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 + // Support: Blackberry 4.6 + // gEBID returns nodes no longer in the document (#6963) if ( elem && elem.parentNode ) { // Inject the element directly into the jQuery object this.length = 1; diff --git a/bower_components/jquery/src/core/ready.js b/bower_components/jquery/src/core/ready.js index 122b1610..db1a6e60 100644 --- a/bower_components/jquery/src/core/ready.js +++ b/bower_components/jquery/src/core/ready.js @@ -73,7 +73,7 @@ jQuery.ready.promise = function( obj ) { readyList = jQuery.Deferred(); // Catch cases where $(document).ready() is called after the browser event has already occurred. - // we once tried to use readyState "interactive" here, but it caused issues like the one + // We once tried to use readyState "interactive" here, but it caused issues like the one // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 if ( document.readyState === "complete" ) { // Handle it asynchronously to allow scripts the opportunity to delay ready |