mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
All: Define a local undefined variable inside the main closure.
This commit is contained in:
parent
ba387ce1c5
commit
21aad10e6a
2
ui/jquery.effects.blind.js
vendored
2
ui/jquery.effects.blind.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.blind = function(o) {
|
||||
|
||||
|
2
ui/jquery.effects.bounce.js
vendored
2
ui/jquery.effects.bounce.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.bounce = function(o) {
|
||||
|
||||
|
2
ui/jquery.effects.clip.js
vendored
2
ui/jquery.effects.clip.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.clip = function(o) {
|
||||
|
||||
|
2
ui/jquery.effects.core.js
vendored
2
ui/jquery.effects.core.js
vendored
@ -7,7 +7,7 @@
|
||||
*
|
||||
* http://docs.jquery.com/UI/Effects/
|
||||
*/
|
||||
;jQuery.effects || (function($) {
|
||||
;jQuery.effects || (function($, undefined) {
|
||||
|
||||
$.effects = {};
|
||||
|
||||
|
2
ui/jquery.effects.drop.js
vendored
2
ui/jquery.effects.drop.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.drop = function(o) {
|
||||
|
||||
|
2
ui/jquery.effects.explode.js
vendored
2
ui/jquery.effects.explode.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.explode = function(o) {
|
||||
|
||||
|
2
ui/jquery.effects.fade.js
vendored
2
ui/jquery.effects.fade.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.fade = function(o) {
|
||||
return this.queue(function() {
|
||||
|
2
ui/jquery.effects.fold.js
vendored
2
ui/jquery.effects.fold.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.fold = function(o) {
|
||||
|
||||
|
2
ui/jquery.effects.highlight.js
vendored
2
ui/jquery.effects.highlight.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.highlight = function(o) {
|
||||
return this.queue(function() {
|
||||
|
2
ui/jquery.effects.pulsate.js
vendored
2
ui/jquery.effects.pulsate.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.pulsate = function(o) {
|
||||
return this.queue(function() {
|
||||
|
2
ui/jquery.effects.scale.js
vendored
2
ui/jquery.effects.scale.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.puff = function(o) {
|
||||
return this.queue(function() {
|
||||
|
2
ui/jquery.effects.shake.js
vendored
2
ui/jquery.effects.shake.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.shake = function(o) {
|
||||
|
||||
|
2
ui/jquery.effects.slide.js
vendored
2
ui/jquery.effects.slide.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.slide = function(o) {
|
||||
|
||||
|
2
ui/jquery.effects.transfer.js
vendored
2
ui/jquery.effects.transfer.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.effects.core.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.effects.transfer = function(o) {
|
||||
return this.queue(function() {
|
||||
|
2
ui/jquery.ui.accordion.js
vendored
2
ui/jquery.ui.accordion.js
vendored
@ -11,7 +11,7 @@
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.widget("ui.accordion", {
|
||||
options: {
|
||||
|
2
ui/jquery.ui.autocomplete.js
vendored
2
ui/jquery.ui.autocomplete.js
vendored
@ -12,7 +12,7 @@
|
||||
* jquery.ui.widget.js
|
||||
* jquery.ui.position.js
|
||||
*/
|
||||
(function( $ ) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.widget( "ui.autocomplete", {
|
||||
options: {
|
||||
|
2
ui/jquery.ui.button.js
vendored
2
ui/jquery.ui.button.js
vendored
@ -11,7 +11,7 @@
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
*/
|
||||
(function( $ ) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
var lastActive,
|
||||
baseClasses = "ui-button ui-widget ui-state-default ui-corner-all",
|
||||
|
2
ui/jquery.ui.core.js
vendored
2
ui/jquery.ui.core.js
vendored
@ -7,7 +7,7 @@
|
||||
*
|
||||
* http://docs.jquery.com/UI
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
// prevent duplicate loading
|
||||
// this is only a problem because we proxy existing functions
|
||||
|
2
ui/jquery.ui.datepicker.js
vendored
2
ui/jquery.ui.datepicker.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.ui.core.js
|
||||
*/
|
||||
(function($) { // hide the namespace
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.extend($.ui, { datepicker: { version: "@VERSION" } });
|
||||
|
||||
|
2
ui/jquery.ui.dialog.js
vendored
2
ui/jquery.ui.dialog.js
vendored
@ -16,7 +16,7 @@
|
||||
* jquery.ui.position.js
|
||||
* jquery.ui.resizable.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
var uiDialogClasses =
|
||||
'ui-dialog ' +
|
||||
|
2
ui/jquery.ui.draggable.js
vendored
2
ui/jquery.ui.draggable.js
vendored
@ -12,7 +12,7 @@
|
||||
* jquery.ui.mouse.js
|
||||
* jquery.ui.widget.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.widget("ui.draggable", $.ui.mouse, {
|
||||
widgetEventPrefix: "drag",
|
||||
|
2
ui/jquery.ui.droppable.js
vendored
2
ui/jquery.ui.droppable.js
vendored
@ -13,7 +13,7 @@
|
||||
* jquery.ui.mouse.js
|
||||
* jquery.ui.draggable.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.widget("ui.droppable", {
|
||||
widgetEventPrefix: "drop",
|
||||
|
2
ui/jquery.ui.mouse.js
vendored
2
ui/jquery.ui.mouse.js
vendored
@ -10,7 +10,7 @@
|
||||
* Depends:
|
||||
* jquery.ui.widget.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.widget("ui.mouse", {
|
||||
options: {
|
||||
|
2
ui/jquery.ui.position.js
vendored
2
ui/jquery.ui.position.js
vendored
@ -7,7 +7,7 @@
|
||||
*
|
||||
* http://docs.jquery.com/UI/Position
|
||||
*/
|
||||
(function( $ ) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.ui = $.ui || {};
|
||||
|
||||
|
2
ui/jquery.ui.progressbar.js
vendored
2
ui/jquery.ui.progressbar.js
vendored
@ -11,7 +11,7 @@
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
*/
|
||||
(function( $ ) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.widget( "ui.progressbar", {
|
||||
options: {
|
||||
|
2
ui/jquery.ui.resizable.js
vendored
2
ui/jquery.ui.resizable.js
vendored
@ -12,7 +12,7 @@
|
||||
* jquery.ui.mouse.js
|
||||
* jquery.ui.widget.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.widget("ui.resizable", $.ui.mouse, {
|
||||
widgetEventPrefix: "resize",
|
||||
|
2
ui/jquery.ui.selectable.js
vendored
2
ui/jquery.ui.selectable.js
vendored
@ -12,7 +12,7 @@
|
||||
* jquery.ui.mouse.js
|
||||
* jquery.ui.widget.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.widget("ui.selectable", $.ui.mouse, {
|
||||
options: {
|
||||
|
2
ui/jquery.ui.slider.js
vendored
2
ui/jquery.ui.slider.js
vendored
@ -12,7 +12,7 @@
|
||||
* jquery.ui.mouse.js
|
||||
* jquery.ui.widget.js
|
||||
*/
|
||||
(function( $ ) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
// number of pages in a slider
|
||||
// (how many times can you page up/down to go through the whole range)
|
||||
|
2
ui/jquery.ui.sortable.js
vendored
2
ui/jquery.ui.sortable.js
vendored
@ -12,7 +12,7 @@
|
||||
* jquery.ui.mouse.js
|
||||
* jquery.ui.widget.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
$.widget("ui.sortable", $.ui.mouse, {
|
||||
widgetEventPrefix: "sort",
|
||||
|
2
ui/jquery.ui.tabs.js
vendored
2
ui/jquery.ui.tabs.js
vendored
@ -11,7 +11,7 @@
|
||||
* jquery.ui.core.js
|
||||
* jquery.ui.widget.js
|
||||
*/
|
||||
(function($) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
var tabId = 0,
|
||||
listId = 0;
|
||||
|
2
ui/jquery.ui.widget.js
vendored
2
ui/jquery.ui.widget.js
vendored
@ -7,7 +7,7 @@
|
||||
*
|
||||
* http://docs.jquery.com/UI/Widget
|
||||
*/
|
||||
(function( $ ) {
|
||||
(function( $, undefined ) {
|
||||
|
||||
var _remove = $.fn.remove;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user