Skip to content

Commit 21aad10

Browse files
committed
All: Define a local undefined variable inside the main closure.
1 parent ba387ce commit 21aad10

31 files changed

+31
-31
lines changed

ui/jquery.effects.blind.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Depends:
1111
* jquery.effects.core.js
1212
*/
13-
(function($) {
13+
(function( $, undefined ) {
1414

1515
$.effects.blind = function(o) {
1616

ui/jquery.effects.bounce.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Depends:
1111
* jquery.effects.core.js
1212
*/
13-
(function($) {
13+
(function( $, undefined ) {
1414

1515
$.effects.bounce = function(o) {
1616

ui/jquery.effects.clip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Depends:
1111
* jquery.effects.core.js
1212
*/
13-
(function($) {
13+
(function( $, undefined ) {
1414

1515
$.effects.clip = function(o) {
1616

ui/jquery.effects.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* http://docs.jquery.com/UI/Effects/
99
*/
10-
;jQuery.effects || (function($) {
10+
;jQuery.effects || (function($, undefined) {
1111

1212
$.effects = {};
1313

ui/jquery.effects.drop.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Depends:
1111
* jquery.effects.core.js
1212
*/
13-
(function($) {
13+
(function( $, undefined ) {
1414

1515
$.effects.drop = function(o) {
1616

ui/jquery.effects.explode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Depends:
1111
* jquery.effects.core.js
1212
*/
13-
(function($) {
13+
(function( $, undefined ) {
1414

1515
$.effects.explode = function(o) {
1616

ui/jquery.effects.fade.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Depends:
1111
* jquery.effects.core.js
1212
*/
13-
(function($) {
13+
(function( $, undefined ) {
1414

1515
$.effects.fade = function(o) {
1616
return this.queue(function() {

ui/jquery.effects.fold.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Depends:
1111
* jquery.effects.core.js
1212
*/
13-
(function($) {
13+
(function( $, undefined ) {
1414

1515
$.effects.fold = function(o) {
1616

ui/jquery.effects.highlight.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Depends:
1111
* jquery.effects.core.js
1212
*/
13-
(function($) {
13+
(function( $, undefined ) {
1414

1515
$.effects.highlight = function(o) {
1616
return this.queue(function() {

ui/jquery.effects.pulsate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Depends:
1111
* jquery.effects.core.js
1212
*/
13-
(function($) {
13+
(function( $, undefined ) {
1414

1515
$.effects.pulsate = function(o) {
1616
return this.queue(function() {

0 commit comments

Comments
 (0)