From 5e6ef44bb4962a8899ae2c9529ba753f91e3488c Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Fri, 6 Jun 2008 20:08:52 +0000 Subject: [PATCH] effects - added standard UI plugin file headers with copyright, license, docs url, and depends list --- ui/source/effects.blind.js | 15 ++++++++++++++- ui/source/effects.bounce.js | 15 ++++++++++++++- ui/source/effects.clip.js | 15 ++++++++++++++- ui/source/effects.core.js | 10 ++++++++++ ui/source/effects.drop.js | 15 ++++++++++++++- ui/source/effects.explode.js | 15 ++++++++++++++- ui/source/effects.fold.js | 15 ++++++++++++++- ui/source/effects.highlight.js | 13 +++++++++++++ ui/source/effects.pulsate.js | 15 ++++++++++++++- ui/source/effects.scale.js | 15 ++++++++++++++- ui/source/effects.shake.js | 15 ++++++++++++++- ui/source/effects.slide.js | 15 ++++++++++++++- ui/source/effects.transfer.js | 15 ++++++++++++++- 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) { -- 2.39.5