Remove an unused support check, correct a comment. Close gh-1211.

This commit is contained in:
Michał Gołębiowski 2013-03-26 04:45:09 +01:00 committed by Dave Methvin
parent 8db7d6f20b
commit 5aaa276e9e
2 changed files with 1 additions and 2 deletions

View File

@ -85,7 +85,6 @@ jQuery.support = (function( support ) {
jQuery.swap( body, body.style.zoom != null ? { zoom: 1 } : {}, function() {
support.boxSizing = div.offsetWidth === 4;
});
support.doesNotIncludeMarginInBodyOffset = body.offsetTop !== 1;
// Use window.getComputedStyle because jsdom on node.js will break without it.
if ( window.getComputedStyle ) {

View File

@ -250,7 +250,7 @@ jQuery.extend({
// Implement the identical functionality for filter and not
function winnow( elements, qualifier, keep ) {
// Can't pass null or undefined to indexOf in Firefox 4
// Can't pass null or undefined to indexOf
// Set to 0 to skip string check
qualifier = qualifier || 0;