aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-06-06 20:08:52 +0000
committerRichard Worth <rdworth@gmail.com>2008-06-06 20:08:52 +0000
commit5e6ef44bb4962a8899ae2c9529ba753f91e3488c (patch)
treeb8d847901c0651d24fb8f6233cf08ac58affb224 /ui
parent17d55655b91980c689422674acc5c3c16d36f149 (diff)
downloadjquery-ui-5e6ef44bb4962a8899ae2c9529ba753f91e3488c.tar.gz
jquery-ui-5e6ef44bb4962a8899ae2c9529ba753f91e3488c.zip
effects - added standard UI plugin file headers with copyright, license, docs url, and depends list
Diffstat (limited to 'ui')
-rw-r--r--ui/source/effects.blind.js15
-rw-r--r--ui/source/effects.bounce.js15
-rw-r--r--ui/source/effects.clip.js15
-rw-r--r--ui/source/effects.core.js10
-rw-r--r--ui/source/effects.drop.js15
-rw-r--r--ui/source/effects.explode.js15
-rw-r--r--ui/source/effects.fold.js15
-rw-r--r--ui/source/effects.highlight.js13
-rw-r--r--ui/source/effects.pulsate.js15
-rw-r--r--ui/source/effects.scale.js15
-rw-r--r--ui/source/effects.shake.js15
-rw-r--r--ui/source/effects.slide.js15
-rw-r--r--ui/source/effects.transfer.js15
13 files changed, 177 insertions, 11 deletions
diff --git a/ui/source/effects.blind.js b/ui/source/effects.blind.js
index 2e6857b7f..34dd829e8 100644
--- a/ui/source/effects.blind.js
+++ b/ui/source/effects.blind.js
@@ -1,4 +1,17 @@
-;(function($) {
+/*
+ * jQuery UI Effects Blind
+ *
+ * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/Blind
+ *
+ * Depends:
+ * effects.core.js
+ *
+ */
+(function($) {
$.effects.blind = function(o) {
diff --git a/ui/source/effects.bounce.js b/ui/source/effects.bounce.js
index 346742620..85f843fab 100644
--- a/ui/source/effects.bounce.js
+++ b/ui/source/effects.bounce.js
@@ -1,4 +1,17 @@
-;(function($) {
+/*
+ * jQuery UI Effects Bounce
+ *
+ * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/Bounce
+ *
+ * Depends:
+ * effects.core.js
+ *
+ */
+(function($) {
$.effects.bounce = function(o) {
diff --git a/ui/source/effects.clip.js b/ui/source/effects.clip.js
index aaf1f3fdf..fc0fb22ad 100644
--- a/ui/source/effects.clip.js
+++ b/ui/source/effects.clip.js
@@ -1,4 +1,17 @@
-;(function($) {
+/*
+ * jQuery UI Effects Clip
+ *
+ * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/Clip
+ *
+ * Depends:
+ * effects.core.js
+ *
+ */
+(function($) {
$.effects.clip = function(o) {
diff --git a/ui/source/effects.core.js b/ui/source/effects.core.js
index 6940eca55..c8641d97c 100644
--- a/ui/source/effects.core.js
+++ b/ui/source/effects.core.js
@@ -1,3 +1,13 @@
+/*
+ * jQuery UI Effects
+ *
+ * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/
+ *
+ */
;(function($) {
$.effects = $.effects || {}; //Add the 'effects' scope
diff --git a/ui/source/effects.drop.js b/ui/source/effects.drop.js
index 1d87c7b69..e45bc9bd3 100644
--- a/ui/source/effects.drop.js
+++ b/ui/source/effects.drop.js
@@ -1,4 +1,17 @@
-;(function($) {
+/*
+ * jQuery UI Effects Drop
+ *
+ * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/Drop
+ *
+ * Depends:
+ * effects.core.js
+ *
+ */
+(function($) {
$.effects.drop = function(o) {
diff --git a/ui/source/effects.explode.js b/ui/source/effects.explode.js
index e61b21377..8e93e6d6e 100644
--- a/ui/source/effects.explode.js
+++ b/ui/source/effects.explode.js
@@ -1,4 +1,17 @@
-;(function($) {
+/*
+ * jQuery UI Effects Explode
+ *
+ * Copyright (c) 2008 Paul Bakaus (ui.jquery.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/Explode
+ *
+ * Depends:
+ * effects.core.js
+ *
+ */
+(function($) {
$.effects.explode = function(o) {
diff --git a/ui/source/effects.fold.js b/ui/source/effects.fold.js
index 81242f721..b006df978 100644
--- a/ui/source/effects.fold.js
+++ b/ui/source/effects.fold.js
@@ -1,4 +1,17 @@
-;(function($) {
+/*
+ * jQuery UI Effects Fold
+ *
+ * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/Fold
+ *
+ * Depends:
+ * effects.core.js
+ *
+ */
+(function($) {
$.effects.fold = function(o) {
diff --git a/ui/source/effects.highlight.js b/ui/source/effects.highlight.js
index bca7e1613..9d6e3a1b1 100644
--- a/ui/source/effects.highlight.js
+++ b/ui/source/effects.highlight.js
@@ -1,3 +1,16 @@
+/*
+ * jQuery UI Effects Highlight
+ *
+ * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/Highlight
+ *
+ * Depends:
+ * effects.core.js
+ *
+ */
;(function($) {
$.effects.highlight = function(o) {
diff --git a/ui/source/effects.pulsate.js b/ui/source/effects.pulsate.js
index 3f2d955e6..690e79805 100644
--- a/ui/source/effects.pulsate.js
+++ b/ui/source/effects.pulsate.js
@@ -1,4 +1,17 @@
-;(function($) {
+/*
+ * jQuery UI Effects Pulsate
+ *
+ * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/Pulsate
+ *
+ * Depends:
+ * effects.core.js
+ *
+ */
+(function($) {
$.effects.pulsate = function(o) {
diff --git a/ui/source/effects.scale.js b/ui/source/effects.scale.js
index 88fdc5fcb..7bf8fdf9d 100644
--- a/ui/source/effects.scale.js
+++ b/ui/source/effects.scale.js
@@ -1,4 +1,17 @@
-;(function($) {
+/*
+ * jQuery UI Effects Scale
+ *
+ * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/Scale
+ *
+ * Depends:
+ * effects.core.js
+ *
+ */
+(function($) {
$.effects.puff = function(o) {
diff --git a/ui/source/effects.shake.js b/ui/source/effects.shake.js
index fdd6c8cdf..d1f54477e 100644
--- a/ui/source/effects.shake.js
+++ b/ui/source/effects.shake.js
@@ -1,4 +1,17 @@
-;(function($) {
+/*
+ * jQuery UI Effects Shake
+ *
+ * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/Shake
+ *
+ * Depends:
+ * effects.core.js
+ *
+ */
+(function($) {
$.effects.shake = function(o) {
diff --git a/ui/source/effects.slide.js b/ui/source/effects.slide.js
index a7f70918a..ce76a5509 100644
--- a/ui/source/effects.slide.js
+++ b/ui/source/effects.slide.js
@@ -1,4 +1,17 @@
-;(function($) {
+/*
+ * jQuery UI Effects Slide
+ *
+ * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/Slide
+ *
+ * Depends:
+ * effects.core.js
+ *
+ */
+(function($) {
$.effects.slide = function(o) {
diff --git a/ui/source/effects.transfer.js b/ui/source/effects.transfer.js
index 06bdcba3b..7812c4e2b 100644
--- a/ui/source/effects.transfer.js
+++ b/ui/source/effects.transfer.js
@@ -1,4 +1,17 @@
-;(function($) {
+/*
+ * jQuery UI Effects Transfer
+ *
+ * Copyright (c) 2008 Aaron Eisenberger (aaronchi@gmail.com)
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * and GPL (GPL-LICENSE.txt) licenses.
+ *
+ * http://docs.jquery.com/UI/Effects/Transfer
+ *
+ * Depends:
+ * effects.core.js
+ *
+ */
+(function($) {
$.effects.transfer = function(o) {