Showing with 11 additions and 7 deletions.
  1. +1 −1 Gruntfile.js
  2. +2 −1 dist/sizzle.js
  3. +2 −2 dist/sizzle.min.js
  4. +1 −1 dist/sizzle.min.map
  5. +1 −0 src/sizzle.js
  6. +1 −1 test/data/fixtures.html
  7. +3 −1 test/unit/selector.js
@@ -208,7 +208,7 @@ module.exports = function( grunt ) {
"karma:ios", "karma:newAndroid", "karma:oldAndroid"
] : "karma:phantom" );

grunt.registerTask( "build", [ "lint", "tests", "compile", "uglify", "dist" ] );
grunt.registerTask( "build", [ "lint", "compile", "uglify", "tests", "dist" ] );
grunt.registerTask( "default", [ "build", "compare_size" ] );

grunt.registerTask( "bower", "bowercopy" );
@@ -6,7 +6,7 @@
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2014-04-21
* Date: 2014-05-22
*/
(function( window ) {

@@ -1256,6 +1256,7 @@ Expr = Sizzle.selectors = {
}),

"contains": markFunction(function( text ) {
text = text.replace( runescape, funescape );
return function( elem ) {
return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
};