Skip to content

Commit

Permalink
Fix up paths so that jqueryui upstream can be pristine
Browse files Browse the repository at this point in the history
  • Loading branch information
josephtate committed Jan 8, 2013
1 parent 5670590 commit e61ade2
Show file tree
Hide file tree
Showing 17 changed files with 211 additions and 1 deletion.
13 changes: 13 additions & 0 deletions effect/blind/blind.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Blind @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Blind
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-blind.js');
13 changes: 13 additions & 0 deletions effect/bounce/bounce.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Bounce @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Bounce
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-bounce.js');
13 changes: 13 additions & 0 deletions effect/clip/clip.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Clip @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Clip
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-clip.js');
13 changes: 13 additions & 0 deletions effect/core/core.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/
*/
steal('../../stealjquery').then(function($) {
if(!jQuery.effect)
steal('../../lib/ui/jquery.ui.effect.js');
});
13 changes: 13 additions & 0 deletions effect/drop/drop.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Drop @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Drop
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-drop.js');
16 changes: 16 additions & 0 deletions effect/effect.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
steal(
'./blind/blind.js',
'./bounce/bounce.js',
'./blind/blind.js',
'./clip/clip.js',
'./drop/drop.js',
'./explode/explode.js',
'./fade/fade.js',
'./fold/fold.js',
'./highlight/highlight.js',
'./pulsate/pulsate.js',
'./scale/scale.js',
'./shake/shake.js',
'./slide/slide.js',
'./transfer/transfer.js'
);
13 changes: 13 additions & 0 deletions effect/explode/explode.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Explode @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Explode
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-explode.js');
13 changes: 13 additions & 0 deletions effect/fade/fade.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Fade @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Fade
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-fade.js');
13 changes: 13 additions & 0 deletions effect/fold/fold.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Fold @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Fold
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-fold.js');
13 changes: 13 additions & 0 deletions effect/highlight/highlight.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Highlight @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Highlight
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-highlight.js');
13 changes: 13 additions & 0 deletions effect/pulsate/pulsate.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Pulsate @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Pulsate
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-pulsate.js');
13 changes: 13 additions & 0 deletions effect/scale/scale.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Scale @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Scale
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-scale.js');
13 changes: 13 additions & 0 deletions effect/shake/shake.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Shake @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Shake
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-shake.js');
13 changes: 13 additions & 0 deletions effect/slide/slide.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Slide @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Slide
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-slide.js');
13 changes: 13 additions & 0 deletions effect/transfer/transfer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* jQuery UI Effects Transfer @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Transfer
*
* Depends:
* jquery.effect.core.js
*/
steal('../core/core.js').then('../../lib/ui/jquery.ui.effect-transfer.js');
2 changes: 1 addition & 1 deletion jqueryui.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ steal(
'./dialog/dialog.js',
'./draggable/draggable.js',
'./droppable/droppable.js',
'./effects/effects.js',
'./effect/effect.js',
'./mouse/mouse.js',
'./position/position.js',
'./progressbar/progressbar.js',
Expand Down
12 changes: 12 additions & 0 deletions stealjquery.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*!
* jQuery UI @VERSION
*
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI
*
* This file steals jquery plugin
*/
steal('jquery');

0 comments on commit e61ade2

Please sign in to comment.