h2ocube_rails_assets 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. data/h2ocube_rails_assets.gemspec +1 -1
  2. data/vendor/assets/javascripts/jquery.fileupload.js +1 -1
  3. data/vendor/assets/javascripts/jquery.ui.js +2 -14914
  4. data/vendor/assets/javascripts/jquery.ui/jquery-ui.custom.js +14879 -0
  5. data/vendor/assets/javascripts/jquery.ui/jquery.ui.accordion.js +731 -0
  6. data/vendor/assets/javascripts/jquery.ui/jquery.ui.autocomplete.js +602 -0
  7. data/vendor/assets/javascripts/jquery.ui/jquery.ui.button.js +418 -0
  8. data/vendor/assets/javascripts/jquery.ui/jquery.ui.core.js +356 -0
  9. data/vendor/assets/javascripts/jquery.ui/jquery.ui.datepicker.js +1846 -0
  10. data/vendor/assets/javascripts/jquery.ui/jquery.ui.dialog.js +858 -0
  11. data/vendor/assets/javascripts/jquery.ui/jquery.ui.draggable.js +836 -0
  12. data/vendor/assets/javascripts/jquery.ui/jquery.ui.droppable.js +294 -0
  13. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-blind.js +82 -0
  14. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-bounce.js +113 -0
  15. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-clip.js +67 -0
  16. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-drop.js +65 -0
  17. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-explode.js +97 -0
  18. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-fade.js +30 -0
  19. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-fold.js +76 -0
  20. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-highlight.js +50 -0
  21. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-pulsate.js +63 -0
  22. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-scale.js +318 -0
  23. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-shake.js +74 -0
  24. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-slide.js +64 -0
  25. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect-transfer.js +47 -0
  26. data/vendor/assets/javascripts/jquery.ui/jquery.ui.effect.js +1276 -0
  27. data/vendor/assets/javascripts/jquery.ui/jquery.ui.menu.js +610 -0
  28. data/vendor/assets/javascripts/jquery.ui/jquery.ui.mouse.js +169 -0
  29. data/vendor/assets/javascripts/jquery.ui/jquery.ui.position.js +517 -0
  30. data/vendor/assets/javascripts/jquery.ui/jquery.ui.progressbar.js +105 -0
  31. data/vendor/assets/javascripts/jquery.ui/jquery.ui.resizable.js +801 -0
  32. data/vendor/assets/javascripts/jquery.ui/jquery.ui.selectable.js +261 -0
  33. data/vendor/assets/javascripts/jquery.ui/jquery.ui.slider.js +644 -0
  34. data/vendor/assets/javascripts/jquery.ui/jquery.ui.sortable.js +1096 -0
  35. data/vendor/assets/javascripts/jquery.ui/jquery.ui.spinner.js +478 -0
  36. data/vendor/assets/javascripts/jquery.ui/jquery.ui.tabs.js +1366 -0
  37. data/vendor/assets/javascripts/jquery.ui/jquery.ui.tooltip.js +398 -0
  38. data/vendor/assets/javascripts/{jquery.ui.widget.js → jquery.ui/jquery.ui.widget.js} +39 -34
  39. metadata +37 -9
@@ -0,0 +1,318 @@
1
+ /*!
2
+ * jQuery UI Effects Scale 1.9.2
3
+ * http://jqueryui.com
4
+ *
5
+ * Copyright 2012 jQuery Foundation and other contributors
6
+ * Released under the MIT license.
7
+ * http://jquery.org/license
8
+ *
9
+ * http://api.jqueryui.com/scale-effect/
10
+ *
11
+ * Depends:
12
+ * jquery.ui.effect.js
13
+ */
14
+ (function( $, undefined ) {
15
+
16
+ $.effects.effect.puff = function( o, done ) {
17
+ var elem = $( this ),
18
+ mode = $.effects.setMode( elem, o.mode || "hide" ),
19
+ hide = mode === "hide",
20
+ percent = parseInt( o.percent, 10 ) || 150,
21
+ factor = percent / 100,
22
+ original = {
23
+ height: elem.height(),
24
+ width: elem.width(),
25
+ outerHeight: elem.outerHeight(),
26
+ outerWidth: elem.outerWidth()
27
+ };
28
+
29
+ $.extend( o, {
30
+ effect: "scale",
31
+ queue: false,
32
+ fade: true,
33
+ mode: mode,
34
+ complete: done,
35
+ percent: hide ? percent : 100,
36
+ from: hide ?
37
+ original :
38
+ {
39
+ height: original.height * factor,
40
+ width: original.width * factor,
41
+ outerHeight: original.outerHeight * factor,
42
+ outerWidth: original.outerWidth * factor
43
+ }
44
+ });
45
+
46
+ elem.effect( o );
47
+ };
48
+
49
+ $.effects.effect.scale = function( o, done ) {
50
+
51
+ // Create element
52
+ var el = $( this ),
53
+ options = $.extend( true, {}, o ),
54
+ mode = $.effects.setMode( el, o.mode || "effect" ),
55
+ percent = parseInt( o.percent, 10 ) ||
56
+ ( parseInt( o.percent, 10 ) === 0 ? 0 : ( mode === "hide" ? 0 : 100 ) ),
57
+ direction = o.direction || "both",
58
+ origin = o.origin,
59
+ original = {
60
+ height: el.height(),
61
+ width: el.width(),
62
+ outerHeight: el.outerHeight(),
63
+ outerWidth: el.outerWidth()
64
+ },
65
+ factor = {
66
+ y: direction !== "horizontal" ? (percent / 100) : 1,
67
+ x: direction !== "vertical" ? (percent / 100) : 1
68
+ };
69
+
70
+ // We are going to pass this effect to the size effect:
71
+ options.effect = "size";
72
+ options.queue = false;
73
+ options.complete = done;
74
+
75
+ // Set default origin and restore for show/hide
76
+ if ( mode !== "effect" ) {
77
+ options.origin = origin || ["middle","center"];
78
+ options.restore = true;
79
+ }
80
+
81
+ options.from = o.from || ( mode === "show" ? {
82
+ height: 0,
83
+ width: 0,
84
+ outerHeight: 0,
85
+ outerWidth: 0
86
+ } : original );
87
+ options.to = {
88
+ height: original.height * factor.y,
89
+ width: original.width * factor.x,
90
+ outerHeight: original.outerHeight * factor.y,
91
+ outerWidth: original.outerWidth * factor.x
92
+ };
93
+
94
+ // Fade option to support puff
95
+ if ( options.fade ) {
96
+ if ( mode === "show" ) {
97
+ options.from.opacity = 0;
98
+ options.to.opacity = 1;
99
+ }
100
+ if ( mode === "hide" ) {
101
+ options.from.opacity = 1;
102
+ options.to.opacity = 0;
103
+ }
104
+ }
105
+
106
+ // Animate
107
+ el.effect( options );
108
+
109
+ };
110
+
111
+ $.effects.effect.size = function( o, done ) {
112
+
113
+ // Create element
114
+ var original, baseline, factor,
115
+ el = $( this ),
116
+ props0 = [ "position", "top", "bottom", "left", "right", "width", "height", "overflow", "opacity" ],
117
+
118
+ // Always restore
119
+ props1 = [ "position", "top", "bottom", "left", "right", "overflow", "opacity" ],
120
+
121
+ // Copy for children
122
+ props2 = [ "width", "height", "overflow" ],
123
+ cProps = [ "fontSize" ],
124
+ vProps = [ "borderTopWidth", "borderBottomWidth", "paddingTop", "paddingBottom" ],
125
+ hProps = [ "borderLeftWidth", "borderRightWidth", "paddingLeft", "paddingRight" ],
126
+
127
+ // Set options
128
+ mode = $.effects.setMode( el, o.mode || "effect" ),
129
+ restore = o.restore || mode !== "effect",
130
+ scale = o.scale || "both",
131
+ origin = o.origin || [ "middle", "center" ],
132
+ position = el.css( "position" ),
133
+ props = restore ? props0 : props1,
134
+ zero = {
135
+ height: 0,
136
+ width: 0,
137
+ outerHeight: 0,
138
+ outerWidth: 0
139
+ };
140
+
141
+ if ( mode === "show" ) {
142
+ el.show();
143
+ }
144
+ original = {
145
+ height: el.height(),
146
+ width: el.width(),
147
+ outerHeight: el.outerHeight(),
148
+ outerWidth: el.outerWidth()
149
+ };
150
+
151
+ if ( o.mode === "toggle" && mode === "show" ) {
152
+ el.from = o.to || zero;
153
+ el.to = o.from || original;
154
+ } else {
155
+ el.from = o.from || ( mode === "show" ? zero : original );
156
+ el.to = o.to || ( mode === "hide" ? zero : original );
157
+ }
158
+
159
+ // Set scaling factor
160
+ factor = {
161
+ from: {
162
+ y: el.from.height / original.height,
163
+ x: el.from.width / original.width
164
+ },
165
+ to: {
166
+ y: el.to.height / original.height,
167
+ x: el.to.width / original.width
168
+ }
169
+ };
170
+
171
+ // Scale the css box
172
+ if ( scale === "box" || scale === "both" ) {
173
+
174
+ // Vertical props scaling
175
+ if ( factor.from.y !== factor.to.y ) {
176
+ props = props.concat( vProps );
177
+ el.from = $.effects.setTransition( el, vProps, factor.from.y, el.from );
178
+ el.to = $.effects.setTransition( el, vProps, factor.to.y, el.to );
179
+ }
180
+
181
+ // Horizontal props scaling
182
+ if ( factor.from.x !== factor.to.x ) {
183
+ props = props.concat( hProps );
184
+ el.from = $.effects.setTransition( el, hProps, factor.from.x, el.from );
185
+ el.to = $.effects.setTransition( el, hProps, factor.to.x, el.to );
186
+ }
187
+ }
188
+
189
+ // Scale the content
190
+ if ( scale === "content" || scale === "both" ) {
191
+
192
+ // Vertical props scaling
193
+ if ( factor.from.y !== factor.to.y ) {
194
+ props = props.concat( cProps ).concat( props2 );
195
+ el.from = $.effects.setTransition( el, cProps, factor.from.y, el.from );
196
+ el.to = $.effects.setTransition( el, cProps, factor.to.y, el.to );
197
+ }
198
+ }
199
+
200
+ $.effects.save( el, props );
201
+ el.show();
202
+ $.effects.createWrapper( el );
203
+ el.css( "overflow", "hidden" ).css( el.from );
204
+
205
+ // Adjust
206
+ if (origin) { // Calculate baseline shifts
207
+ baseline = $.effects.getBaseline( origin, original );
208
+ el.from.top = ( original.outerHeight - el.outerHeight() ) * baseline.y;
209
+ el.from.left = ( original.outerWidth - el.outerWidth() ) * baseline.x;
210
+ el.to.top = ( original.outerHeight - el.to.outerHeight ) * baseline.y;
211
+ el.to.left = ( original.outerWidth - el.to.outerWidth ) * baseline.x;
212
+ }
213
+ el.css( el.from ); // set top & left
214
+
215
+ // Animate
216
+ if ( scale === "content" || scale === "both" ) { // Scale the children
217
+
218
+ // Add margins/font-size
219
+ vProps = vProps.concat([ "marginTop", "marginBottom" ]).concat(cProps);
220
+ hProps = hProps.concat([ "marginLeft", "marginRight" ]);
221
+ props2 = props0.concat(vProps).concat(hProps);
222
+
223
+ el.find( "*[width]" ).each( function(){
224
+ var child = $( this ),
225
+ c_original = {
226
+ height: child.height(),
227
+ width: child.width(),
228
+ outerHeight: child.outerHeight(),
229
+ outerWidth: child.outerWidth()
230
+ };
231
+ if (restore) {
232
+ $.effects.save(child, props2);
233
+ }
234
+
235
+ child.from = {
236
+ height: c_original.height * factor.from.y,
237
+ width: c_original.width * factor.from.x,
238
+ outerHeight: c_original.outerHeight * factor.from.y,
239
+ outerWidth: c_original.outerWidth * factor.from.x
240
+ };
241
+ child.to = {
242
+ height: c_original.height * factor.to.y,
243
+ width: c_original.width * factor.to.x,
244
+ outerHeight: c_original.height * factor.to.y,
245
+ outerWidth: c_original.width * factor.to.x
246
+ };
247
+
248
+ // Vertical props scaling
249
+ if ( factor.from.y !== factor.to.y ) {
250
+ child.from = $.effects.setTransition( child, vProps, factor.from.y, child.from );
251
+ child.to = $.effects.setTransition( child, vProps, factor.to.y, child.to );
252
+ }
253
+
254
+ // Horizontal props scaling
255
+ if ( factor.from.x !== factor.to.x ) {
256
+ child.from = $.effects.setTransition( child, hProps, factor.from.x, child.from );
257
+ child.to = $.effects.setTransition( child, hProps, factor.to.x, child.to );
258
+ }
259
+
260
+ // Animate children
261
+ child.css( child.from );
262
+ child.animate( child.to, o.duration, o.easing, function() {
263
+
264
+ // Restore children
265
+ if ( restore ) {
266
+ $.effects.restore( child, props2 );
267
+ }
268
+ });
269
+ });
270
+ }
271
+
272
+ // Animate
273
+ el.animate( el.to, {
274
+ queue: false,
275
+ duration: o.duration,
276
+ easing: o.easing,
277
+ complete: function() {
278
+ if ( el.to.opacity === 0 ) {
279
+ el.css( "opacity", el.from.opacity );
280
+ }
281
+ if( mode === "hide" ) {
282
+ el.hide();
283
+ }
284
+ $.effects.restore( el, props );
285
+ if ( !restore ) {
286
+
287
+ // we need to calculate our new positioning based on the scaling
288
+ if ( position === "static" ) {
289
+ el.css({
290
+ position: "relative",
291
+ top: el.to.top,
292
+ left: el.to.left
293
+ });
294
+ } else {
295
+ $.each([ "top", "left" ], function( idx, pos ) {
296
+ el.css( pos, function( _, str ) {
297
+ var val = parseInt( str, 10 ),
298
+ toRef = idx ? el.to.left : el.to.top;
299
+
300
+ // if original was "auto", recalculate the new value from wrapper
301
+ if ( str === "auto" ) {
302
+ return toRef + "px";
303
+ }
304
+
305
+ return val + toRef + "px";
306
+ });
307
+ });
308
+ }
309
+ }
310
+
311
+ $.effects.removeWrapper( el );
312
+ done();
313
+ }
314
+ });
315
+
316
+ };
317
+
318
+ })(jQuery);
@@ -0,0 +1,74 @@
1
+ /*!
2
+ * jQuery UI Effects Shake 1.9.2
3
+ * http://jqueryui.com
4
+ *
5
+ * Copyright 2012 jQuery Foundation and other contributors
6
+ * Released under the MIT license.
7
+ * http://jquery.org/license
8
+ *
9
+ * http://api.jqueryui.com/shake-effect/
10
+ *
11
+ * Depends:
12
+ * jquery.ui.effect.js
13
+ */
14
+ (function( $, undefined ) {
15
+
16
+ $.effects.effect.shake = function( o, done ) {
17
+
18
+ var el = $( this ),
19
+ props = [ "position", "top", "bottom", "left", "right", "height", "width" ],
20
+ mode = $.effects.setMode( el, o.mode || "effect" ),
21
+ direction = o.direction || "left",
22
+ distance = o.distance || 20,
23
+ times = o.times || 3,
24
+ anims = times * 2 + 1,
25
+ speed = Math.round(o.duration/anims),
26
+ ref = (direction === "up" || direction === "down") ? "top" : "left",
27
+ positiveMotion = (direction === "up" || direction === "left"),
28
+ animation = {},
29
+ animation1 = {},
30
+ animation2 = {},
31
+ i,
32
+
33
+ // we will need to re-assemble the queue to stack our animations in place
34
+ queue = el.queue(),
35
+ queuelen = queue.length;
36
+
37
+ $.effects.save( el, props );
38
+ el.show();
39
+ $.effects.createWrapper( el );
40
+
41
+ // Animation
42
+ animation[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance;
43
+ animation1[ ref ] = ( positiveMotion ? "+=" : "-=" ) + distance * 2;
44
+ animation2[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance * 2;
45
+
46
+ // Animate
47
+ el.animate( animation, speed, o.easing );
48
+
49
+ // Shakes
50
+ for ( i = 1; i < times; i++ ) {
51
+ el.animate( animation1, speed, o.easing ).animate( animation2, speed, o.easing );
52
+ }
53
+ el
54
+ .animate( animation1, speed, o.easing )
55
+ .animate( animation, speed / 2, o.easing )
56
+ .queue(function() {
57
+ if ( mode === "hide" ) {
58
+ el.hide();
59
+ }
60
+ $.effects.restore( el, props );
61
+ $.effects.removeWrapper( el );
62
+ done();
63
+ });
64
+
65
+ // inject all the animations we just queued to be first in line (after "inprogress")
66
+ if ( queuelen > 1) {
67
+ queue.splice.apply( queue,
68
+ [ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) );
69
+ }
70
+ el.dequeue();
71
+
72
+ };
73
+
74
+ })(jQuery);
@@ -0,0 +1,64 @@
1
+ /*!
2
+ * jQuery UI Effects Slide 1.9.2
3
+ * http://jqueryui.com
4
+ *
5
+ * Copyright 2012 jQuery Foundation and other contributors
6
+ * Released under the MIT license.
7
+ * http://jquery.org/license
8
+ *
9
+ * http://api.jqueryui.com/slide-effect/
10
+ *
11
+ * Depends:
12
+ * jquery.ui.effect.js
13
+ */
14
+ (function( $, undefined ) {
15
+
16
+ $.effects.effect.slide = function( o, done ) {
17
+
18
+ // Create element
19
+ var el = $( this ),
20
+ props = [ "position", "top", "bottom", "left", "right", "width", "height" ],
21
+ mode = $.effects.setMode( el, o.mode || "show" ),
22
+ show = mode === "show",
23
+ direction = o.direction || "left",
24
+ ref = (direction === "up" || direction === "down") ? "top" : "left",
25
+ positiveMotion = (direction === "up" || direction === "left"),
26
+ distance,
27
+ animation = {};
28
+
29
+ // Adjust
30
+ $.effects.save( el, props );
31
+ el.show();
32
+ distance = o.distance || el[ ref === "top" ? "outerHeight" : "outerWidth" ]( true );
33
+
34
+ $.effects.createWrapper( el ).css({
35
+ overflow: "hidden"
36
+ });
37
+
38
+ if ( show ) {
39
+ el.css( ref, positiveMotion ? (isNaN(distance) ? "-" + distance : -distance) : distance );
40
+ }
41
+
42
+ // Animation
43
+ animation[ ref ] = ( show ?
44
+ ( positiveMotion ? "+=" : "-=") :
45
+ ( positiveMotion ? "-=" : "+=")) +
46
+ distance;
47
+
48
+ // Animate
49
+ el.animate( animation, {
50
+ queue: false,
51
+ duration: o.duration,
52
+ easing: o.easing,
53
+ complete: function() {
54
+ if ( mode === "hide" ) {
55
+ el.hide();
56
+ }
57
+ $.effects.restore( el, props );
58
+ $.effects.removeWrapper( el );
59
+ done();
60
+ }
61
+ });
62
+ };
63
+
64
+ })(jQuery);