mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
No ticket. Restore checking individual src/**/*.js files by jsHint.
This commit is contained in:
parent
6987220d2b
commit
f044622bae
@ -1,3 +1,5 @@
|
||||
src/intro.js
|
||||
src/outro.js
|
||||
test/qunit/**
|
||||
test/data/jquery-1.9.1.ajax_xhr.min.js
|
||||
test/data/badcall.js
|
||||
|
@ -53,6 +53,12 @@ module.exports = function( grunt ) {
|
||||
}
|
||||
},
|
||||
jshint: {
|
||||
src: {
|
||||
src: [ "src/**/*.js" ],
|
||||
options: {
|
||||
jshintrc: "src/.jshintrc"
|
||||
}
|
||||
},
|
||||
dist: {
|
||||
src: [ "dist/jquery.js" ],
|
||||
options: srcHintOptions
|
||||
|
@ -1,3 +1,3 @@
|
||||
define(function() {
|
||||
return /\?/;
|
||||
return (/\?/);
|
||||
});
|
@ -1,7 +1,7 @@
|
||||
define([
|
||||
"../core",
|
||||
"../selector",
|
||||
"../effects",
|
||||
"../effects"
|
||||
], function( jQuery ) {
|
||||
jQuery.expr.filters.animated = function( elem ) {
|
||||
return jQuery.grep(jQuery.timers, function( fn ) {
|
||||
|
@ -1,3 +1,3 @@
|
||||
define(function() {
|
||||
return /^(?:checkbox|radio)$/i;
|
||||
return (/^(?:checkbox|radio)$/i);
|
||||
});
|
@ -47,19 +47,21 @@ jQuery.fn.offset = function( options ) {
|
||||
jQuery.offset = {
|
||||
|
||||
setOffset: function( elem, options, i ) {
|
||||
var position = jQuery.css( elem, "position" );
|
||||
var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
|
||||
position = jQuery.css( elem, "position" ),
|
||||
curElem = jQuery( elem ),
|
||||
props = {};
|
||||
|
||||
// set position first, in-case top/left are set even on static elem
|
||||
if ( position === "static" ) {
|
||||
elem.style.position = "relative";
|
||||
}
|
||||
|
||||
var curElem = jQuery( elem ),
|
||||
curOffset = curElem.offset(),
|
||||
curCSSTop = jQuery.css( elem, "top" ),
|
||||
curCSSLeft = jQuery.css( elem, "left" ),
|
||||
calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1,
|
||||
props = {}, curPosition = {}, curTop, curLeft;
|
||||
curOffset = curElem.offset();
|
||||
curCSSTop = jQuery.css( elem, "top" );
|
||||
curCSSLeft = jQuery.css( elem, "left" );
|
||||
calculatePosition = ( position === "absolute" || position === "fixed" ) &&
|
||||
jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1;
|
||||
|
||||
// need to be able to calculate position if either top or left is auto and position is either absolute or fixed
|
||||
if ( calculatePosition ) {
|
||||
|
@ -1,3 +1,3 @@
|
||||
define(function() {
|
||||
return /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source;
|
||||
return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
|
||||
});
|
@ -1,3 +1,3 @@
|
||||
define(function() {
|
||||
return /\S+/g;
|
||||
return (/\S+/g);
|
||||
});
|
Loading…
Reference in New Issue
Block a user