github github
  • Home
  • Pricing and Signup
  • Training
  • Gist
  • Blog
  • Login

jquery / jquery-ui

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 919
    • 211
  • Source
  • Commits
  • Network (211)
  • Graphs
  • Tree: 21aad10

click here to add a description

click here to add a homepage

  • Switch Branches (8)
    • bind
    • devpreview
    • formcontrols
    • master
    • menu
    • panel
    • tooltip
    • widget-super
  • Switch Tags (21)
    • 1.9m2
    • 1.9m1
    • 1.8rc3
    • 1.8rc2
    • 1.8rc1
    • 1.8b1
    • 1.8a2
    • 1.8a1
    • 1.8.4
    • 1.8.3
    • 1.8.2
    • 1.8.1
    • 1.8
    • 1.7
    • 1.6rc6
    • 1.6rc5
    • 1.6rc3
    • 1.6rc2
    • 1.6
    • 1.5.2
    • 1.5.1
  • Comments
  • Contributors
Sending Request…

The official jQuery user interface library. — Read more

  Cancel

http://jqueryui.com/

  Cancel
  • HTTP
  • Git Read-Only

This URL has Read+Write access

All: Define a local undefined variable inside the main closure.
scottgonzalez (author)
Tue Jul 13 06:57:58 -0700 2010
commit  21aad10e6aa68610feee
tree    43765c4ada332889a3de
parent  ba387ce1c5ee4b0adce4
M ui/jquery.effects.blind.js 2 ••
M ui/jquery.effects.bounce.js 2 ••
M ui/jquery.effects.clip.js 2 ••
M ui/jquery.effects.core.js 2 ••
M ui/jquery.effects.drop.js 2 ••
M ui/jquery.effects.explode.js 2 ••
M ui/jquery.effects.fade.js 2 ••
M ui/jquery.effects.fold.js 2 ••
M ui/jquery.effects.highlight.js 2 ••
M ui/jquery.effects.pulsate.js 2 ••
M ui/jquery.effects.scale.js 2 ••
M ui/jquery.effects.shake.js 2 ••
M ui/jquery.effects.slide.js 2 ••
M ui/jquery.effects.transfer.js 2 ••
M ui/jquery.ui.accordion.js 2 ••
M ui/jquery.ui.autocomplete.js 2 ••
M ui/jquery.ui.button.js 2 ••
M ui/jquery.ui.core.js 2 ••
M ui/jquery.ui.datepicker.js 2 ••
M ui/jquery.ui.dialog.js 2 ••
M ui/jquery.ui.draggable.js 2 ••
M ui/jquery.ui.droppable.js 2 ••
M ui/jquery.ui.mouse.js 2 ••
M ui/jquery.ui.position.js 2 ••
M ui/jquery.ui.progressbar.js 2 ••
M ui/jquery.ui.resizable.js 2 ••
M ui/jquery.ui.selectable.js 2 ••
M ui/jquery.ui.slider.js 2 ••
M ui/jquery.ui.sortable.js 2 ••
M ui/jquery.ui.tabs.js 2 ••
M ui/jquery.ui.widget.js 2 ••
Txt ui/jquery.effects.blind.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.blind = function(o) {
16 16
 
Txt ui/jquery.effects.bounce.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.bounce = function(o) {
16 16
 
Txt ui/jquery.effects.clip.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.clip = function(o) {
16 16
 
Txt ui/jquery.effects.core.js
  • View file @ 21aad10
... ...
@@ -7,7 +7,7 @@
7 7
  *
8 8
  * http://docs.jquery.com/UI/Effects/
9 9
  */
10  
-;jQuery.effects || (function($) {
  10
+;jQuery.effects || (function($, undefined) {
11 11
 
12 12
 $.effects = {};
13 13
 
Txt ui/jquery.effects.drop.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.drop = function(o) {
16 16
 
Txt ui/jquery.effects.explode.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.explode = function(o) {
16 16
 
Txt ui/jquery.effects.fade.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.fade = function(o) {
16 16
   return this.queue(function() {
Txt ui/jquery.effects.fold.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.fold = function(o) {
16 16
 
Txt ui/jquery.effects.highlight.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.highlight = function(o) {
16 16
   return this.queue(function() {
Txt ui/jquery.effects.pulsate.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.pulsate = function(o) {
16 16
   return this.queue(function() {
Txt ui/jquery.effects.scale.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.puff = function(o) {
16 16
   return this.queue(function() {
Txt ui/jquery.effects.shake.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.shake = function(o) {
16 16
 
Txt ui/jquery.effects.slide.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.slide = function(o) {
16 16
 
Txt ui/jquery.effects.transfer.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.effects.core.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.effects.transfer = function(o) {
16 16
   return this.queue(function() {
Txt ui/jquery.ui.accordion.js
  • View file @ 21aad10
... ...
@@ -11,7 +11,7 @@
11 11
  *  jquery.ui.core.js
12 12
  *  jquery.ui.widget.js
13 13
  */
14  
-(function($) {
  14
+(function( $, undefined ) {
15 15
 
16 16
 $.widget("ui.accordion", {
17 17
   options: {
Txt ui/jquery.ui.autocomplete.js
  • View file @ 21aad10
... ...
@@ -12,7 +12,7 @@
12 12
  *  jquery.ui.widget.js
13 13
  *  jquery.ui.position.js
14 14
  */
15  
-(function( $ ) {
  15
+(function( $, undefined ) {
16 16
 
17 17
 $.widget( "ui.autocomplete", {
18 18
   options: {
Txt ui/jquery.ui.button.js
  • View file @ 21aad10
... ...
@@ -11,7 +11,7 @@
11 11
  *  jquery.ui.core.js
12 12
  *  jquery.ui.widget.js
13 13
  */
14  
-(function( $ ) {
  14
+(function( $, undefined ) {
15 15
 
16 16
 var lastActive,
17 17
   baseClasses = "ui-button ui-widget ui-state-default ui-corner-all",
Txt ui/jquery.ui.core.js
  • View file @ 21aad10
... ...
@@ -7,7 +7,7 @@
7 7
  *
8 8
  * http://docs.jquery.com/UI
9 9
  */
10  
-(function($) {
  10
+(function( $, undefined ) {
11 11
 
12 12
 // prevent duplicate loading
13 13
 // this is only a problem because we proxy existing functions
Txt ui/jquery.ui.datepicker.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.ui.core.js
12 12
  */
13  
-(function($) { // hide the namespace
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.extend($.ui, { datepicker: { version: "@VERSION" } });
16 16
 
Txt ui/jquery.ui.dialog.js
  • View file @ 21aad10
... ...
@@ -16,7 +16,7 @@
16 16
  *  jquery.ui.position.js
17 17
  *  jquery.ui.resizable.js
18 18
  */
19  
-(function($) {
  19
+(function( $, undefined ) {
20 20
 
21 21
 var uiDialogClasses =
22 22
   'ui-dialog ' +
Txt ui/jquery.ui.draggable.js
  • View file @ 21aad10
... ...
@@ -12,7 +12,7 @@
12 12
  *  jquery.ui.mouse.js
13 13
  *  jquery.ui.widget.js
14 14
  */
15  
-(function($) {
  15
+(function( $, undefined ) {
16 16
 
17 17
 $.widget("ui.draggable", $.ui.mouse, {
18 18
   widgetEventPrefix: "drag",
Txt ui/jquery.ui.droppable.js
  • View file @ 21aad10
... ...
@@ -13,7 +13,7 @@
13 13
  *  jquery.ui.mouse.js
14 14
  *  jquery.ui.draggable.js
15 15
  */
16  
-(function($) {
  16
+(function( $, undefined ) {
17 17
 
18 18
 $.widget("ui.droppable", {
19 19
   widgetEventPrefix: "drop",
Txt ui/jquery.ui.mouse.js
  • View file @ 21aad10
... ...
@@ -10,7 +10,7 @@
10 10
  * Depends:
11 11
  *  jquery.ui.widget.js
12 12
  */
13  
-(function($) {
  13
+(function( $, undefined ) {
14 14
 
15 15
 $.widget("ui.mouse", {
16 16
   options: {
Txt ui/jquery.ui.position.js
  • View file @ 21aad10
... ...
@@ -7,7 +7,7 @@
7 7
  *
8 8
  * http://docs.jquery.com/UI/Position
9 9
  */
10  
-(function( $ ) {
  10
+(function( $, undefined ) {
11 11
 
12 12
 $.ui = $.ui || {};
13 13
 
Txt ui/jquery.ui.progressbar.js
  • View file @ 21aad10
... ...
@@ -11,7 +11,7 @@
11 11
  *   jquery.ui.core.js
12 12
  *   jquery.ui.widget.js
13 13
  */
14  
-(function( $ ) {
  14
+(function( $, undefined ) {
15 15
 
16 16
 $.widget( "ui.progressbar", {
17 17
   options: {
Txt ui/jquery.ui.resizable.js
  • View file @ 21aad10
... ...
@@ -12,7 +12,7 @@
12 12
  *  jquery.ui.mouse.js
13 13
  *  jquery.ui.widget.js
14 14
  */
15  
-(function($) {
  15
+(function( $, undefined ) {
16 16
 
17 17
 $.widget("ui.resizable", $.ui.mouse, {
18 18
   widgetEventPrefix: "resize",
Txt ui/jquery.ui.selectable.js
  • View file @ 21aad10
... ...
@@ -12,7 +12,7 @@
12 12
  *  jquery.ui.mouse.js
13 13
  *  jquery.ui.widget.js
14 14
  */
15  
-(function($) {
  15
+(function( $, undefined ) {
16 16
 
17 17
 $.widget("ui.selectable", $.ui.mouse, {
18 18
   options: {
Txt ui/jquery.ui.slider.js
  • View file @ 21aad10
... ...
@@ -12,7 +12,7 @@
12 12
  *  jquery.ui.mouse.js
13 13
  *  jquery.ui.widget.js
14 14
  */
15  
-(function( $ ) {
  15
+(function( $, undefined ) {
16 16
 
17 17
 // number of pages in a slider
18 18
 // (how many times can you page up/down to go through the whole range)
Txt ui/jquery.ui.sortable.js
  • View file @ 21aad10
... ...
@@ -12,7 +12,7 @@
12 12
  *  jquery.ui.mouse.js
13 13
  *  jquery.ui.widget.js
14 14
  */
15  
-(function($) {
  15
+(function( $, undefined ) {
16 16
 
17 17
 $.widget("ui.sortable", $.ui.mouse, {
18 18
   widgetEventPrefix: "sort",
Txt ui/jquery.ui.tabs.js
  • View file @ 21aad10
... ...
@@ -11,7 +11,7 @@
11 11
  *  jquery.ui.core.js
12 12
  *  jquery.ui.widget.js
13 13
  */
14  
-(function($) {
  14
+(function( $, undefined ) {
15 15
 
16 16
 var tabId = 0,
17 17
   listId = 0;
Txt ui/jquery.ui.widget.js
  • View file @ 21aad10
... ...
@@ -7,7 +7,7 @@
7 7
  *
8 8
  * http://docs.jquery.com/UI/Widget
9 9
  */
10  
-(function( $ ) {
  10
+(function( $, undefined ) {
11 11
 
12 12
 var _remove = $.fn.remove;
13 13
 

0 notes on commit 21aad10

Please log in to comment.
Dedicated Server Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
  • Blog
  • Support
  • Training
  • Job Board
  • Shop
  • Contact
  • API
  • Status
  • © 2010 GitHub Inc. All rights reserved.
  • Terms of Service
  • Privacy
  • Security
  • English
  • Deutsch
  • Français
  • 日本語
  • Português (BR)
  • 中文
  • See all available languages

Your current locale selection: English. Choose another?

  • English
  • Afrikaans
  • Català
  • Čeština
  • Deutsch
  • Español
  • Français
  • Hrvatski
  • Indonesia
  • Italiano
  • 日本語
  • Nederlands
  • Norsk
  • Polski
  • Português (BR)
  • Српски
  • Svenska
  • 中文