mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
adds strict rule to jshint options (except for test files). "use strict" is added to the main jQuery closure and some "could-be-unsafe" this
trickery in effects is silenced.
This commit is contained in:
parent
ee9687d441
commit
9346c0ef99
@ -9,6 +9,7 @@
|
|||||||
"node": true,
|
"node": true,
|
||||||
"quotmark": "double",
|
"quotmark": "double",
|
||||||
"smarttabs": true,
|
"smarttabs": true,
|
||||||
|
"strict": true,
|
||||||
"trailing": true,
|
"trailing": true,
|
||||||
"undef": true,
|
"undef": true,
|
||||||
"unused": true
|
"unused": true
|
||||||
|
@ -6,8 +6,10 @@
|
|||||||
"evil": true,
|
"evil": true,
|
||||||
"expr": true,
|
"expr": true,
|
||||||
"maxerr": 100,
|
"maxerr": 100,
|
||||||
|
"newcap": false,
|
||||||
"quotmark": "double",
|
"quotmark": "double",
|
||||||
"smarttabs": true,
|
"smarttabs": true,
|
||||||
|
"strict": true,
|
||||||
"sub": true,
|
"sub": true,
|
||||||
"trailing": true,
|
"trailing": true,
|
||||||
"undef": true,
|
"undef": true,
|
||||||
|
1
src/effects.js
vendored
1
src/effects.js
vendored
@ -233,6 +233,7 @@ jQuery.Animation = jQuery.extend( Animation, {
|
|||||||
});
|
});
|
||||||
|
|
||||||
function defaultPrefilter( elem, props, opts ) {
|
function defaultPrefilter( elem, props, opts ) {
|
||||||
|
/*jshint validthis:true */
|
||||||
var index, prop, value, length, dataShow, tween, hooks, oldfire,
|
var index, prop, value, length, dataShow, tween, hooks, oldfire,
|
||||||
anim = this,
|
anim = this,
|
||||||
style = elem.style,
|
style = elem.style,
|
||||||
|
@ -12,3 +12,4 @@
|
|||||||
* Date: @DATE
|
* Date: @DATE
|
||||||
*/
|
*/
|
||||||
(function( window, undefined ) {
|
(function( window, undefined ) {
|
||||||
|
"use strict";
|
||||||
|
Loading…
Reference in New Issue
Block a user