kanpachi 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (136) hide show
  1. checksums.yaml +4 -4
  2. data/.bowerrc +3 -0
  3. data/.travis.yml +3 -1
  4. data/bower.json +22 -0
  5. data/kanpachi.gemspec +6 -6
  6. data/lib/kanpachi/doc/template/components/html5shiv/.bower.json +26 -0
  7. data/lib/kanpachi/doc/template/components/html5shiv/dist/html5shiv-printshiv.js +11 -0
  8. data/lib/kanpachi/doc/template/{source/javascripts → components/html5shiv/dist}/html5shiv.js +4 -5
  9. data/lib/kanpachi/doc/template/components/html5shiv/readme.md +143 -0
  10. data/lib/kanpachi/doc/template/components/jquery/.bower.json +37 -0
  11. data/lib/kanpachi/doc/template/components/jquery/MIT-LICENSE.txt +21 -0
  12. data/lib/kanpachi/doc/template/components/jquery/bower.json +27 -0
  13. data/lib/kanpachi/doc/template/components/jquery/dist/jquery.js +10337 -0
  14. data/lib/kanpachi/doc/template/components/jquery/dist/jquery.min.js +5 -0
  15. data/lib/kanpachi/doc/template/components/jquery/dist/jquery.min.map +1 -0
  16. data/lib/kanpachi/doc/template/components/jquery/src/ajax.js +807 -0
  17. data/lib/kanpachi/doc/template/components/jquery/src/ajax/jsonp.js +89 -0
  18. data/lib/kanpachi/doc/template/components/jquery/src/ajax/load.js +75 -0
  19. data/lib/kanpachi/doc/template/components/jquery/src/ajax/parseJSON.js +51 -0
  20. data/lib/kanpachi/doc/template/components/jquery/src/ajax/parseXML.js +31 -0
  21. data/lib/kanpachi/doc/template/components/jquery/src/ajax/script.js +93 -0
  22. data/lib/kanpachi/doc/template/components/jquery/src/ajax/var/nonce.js +5 -0
  23. data/lib/kanpachi/doc/template/components/jquery/src/ajax/var/rquery.js +3 -0
  24. data/lib/kanpachi/doc/template/components/jquery/src/ajax/xhr.js +196 -0
  25. data/lib/kanpachi/doc/template/components/jquery/src/attributes.js +11 -0
  26. data/lib/kanpachi/doc/template/components/jquery/src/attributes/attr.js +271 -0
  27. data/lib/kanpachi/doc/template/components/jquery/src/attributes/classes.js +157 -0
  28. data/lib/kanpachi/doc/template/components/jquery/src/attributes/prop.js +134 -0
  29. data/lib/kanpachi/doc/template/components/jquery/src/attributes/support.js +64 -0
  30. data/lib/kanpachi/doc/template/components/jquery/src/attributes/val.js +176 -0
  31. data/lib/kanpachi/doc/template/components/jquery/src/callbacks.js +205 -0
  32. data/lib/kanpachi/doc/template/components/jquery/src/core.js +542 -0
  33. data/lib/kanpachi/doc/template/components/jquery/src/core/access.js +60 -0
  34. data/lib/kanpachi/doc/template/components/jquery/src/core/init.js +132 -0
  35. data/lib/kanpachi/doc/template/components/jquery/src/core/parseHTML.js +39 -0
  36. data/lib/kanpachi/doc/template/components/jquery/src/core/ready.js +151 -0
  37. data/lib/kanpachi/doc/template/components/jquery/src/core/var/rsingleTag.js +4 -0
  38. data/lib/kanpachi/doc/template/components/jquery/src/css.js +508 -0
  39. data/lib/kanpachi/doc/template/components/jquery/src/css/addGetHookIf.js +32 -0
  40. data/lib/kanpachi/doc/template/components/jquery/src/css/curCSS.js +117 -0
  41. data/lib/kanpachi/doc/template/components/jquery/src/css/defaultDisplay.js +68 -0
  42. data/lib/kanpachi/doc/template/components/jquery/src/css/hiddenVisibleSelectors.js +20 -0
  43. data/lib/kanpachi/doc/template/components/jquery/src/css/support.js +193 -0
  44. data/lib/kanpachi/doc/template/components/jquery/src/css/swap.js +28 -0
  45. data/lib/kanpachi/doc/template/components/jquery/src/css/var/cssExpand.js +3 -0
  46. data/lib/kanpachi/doc/template/components/jquery/src/css/var/isHidden.js +13 -0
  47. data/lib/kanpachi/doc/template/components/jquery/src/css/var/rmargin.js +3 -0
  48. data/lib/kanpachi/doc/template/components/jquery/src/css/var/rnumnonpx.js +5 -0
  49. data/lib/kanpachi/doc/template/components/jquery/src/data.js +332 -0
  50. data/lib/kanpachi/doc/template/components/jquery/src/data/accepts.js +21 -0
  51. data/lib/kanpachi/doc/template/components/jquery/src/data/support.js +25 -0
  52. data/lib/kanpachi/doc/template/components/jquery/src/deferred.js +150 -0
  53. data/lib/kanpachi/doc/template/components/jquery/src/deprecated.js +13 -0
  54. data/lib/kanpachi/doc/template/components/jquery/src/dimensions.js +50 -0
  55. data/lib/kanpachi/doc/template/components/jquery/src/effects.js +648 -0
  56. data/lib/kanpachi/doc/template/components/jquery/src/effects/Tween.js +114 -0
  57. data/lib/kanpachi/doc/template/components/jquery/src/effects/animatedSelector.js +13 -0
  58. data/lib/kanpachi/doc/template/components/jquery/src/effects/support.js +76 -0
  59. data/lib/kanpachi/doc/template/components/jquery/src/event.js +1029 -0
  60. data/lib/kanpachi/doc/template/components/jquery/src/event/alias.js +39 -0
  61. data/lib/kanpachi/doc/template/components/jquery/src/event/support.js +26 -0
  62. data/lib/kanpachi/doc/template/components/jquery/src/exports/amd.js +18 -0
  63. data/lib/kanpachi/doc/template/components/jquery/src/exports/global.js +32 -0
  64. data/lib/kanpachi/doc/template/components/jquery/src/intro.js +44 -0
  65. data/lib/kanpachi/doc/template/components/jquery/src/jquery.js +37 -0
  66. data/lib/kanpachi/doc/template/components/jquery/src/manipulation.js +744 -0
  67. data/lib/kanpachi/doc/template/components/jquery/src/manipulation/_evalUrl.js +18 -0
  68. data/lib/kanpachi/doc/template/components/jquery/src/manipulation/support.js +79 -0
  69. data/lib/kanpachi/doc/template/components/jquery/src/manipulation/var/rcheckableType.js +3 -0
  70. data/lib/kanpachi/doc/template/components/jquery/src/offset.js +211 -0
  71. data/lib/kanpachi/doc/template/components/jquery/src/outro.js +1 -0
  72. data/lib/kanpachi/doc/template/components/jquery/src/queue.js +142 -0
  73. data/lib/kanpachi/doc/template/components/jquery/src/queue/delay.js +22 -0
  74. data/lib/kanpachi/doc/template/components/jquery/src/selector-sizzle.js +14 -0
  75. data/lib/kanpachi/doc/template/components/jquery/src/selector.js +1 -0
  76. data/lib/kanpachi/doc/template/components/jquery/src/serialize.js +110 -0
  77. data/lib/kanpachi/doc/template/components/jquery/src/sizzle/dist/sizzle.js +2015 -0
  78. data/lib/kanpachi/doc/template/components/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  79. data/lib/kanpachi/doc/template/components/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  80. data/lib/kanpachi/doc/template/components/jquery/src/support.js +62 -0
  81. data/lib/kanpachi/doc/template/components/jquery/src/traversing.js +200 -0
  82. data/lib/kanpachi/doc/template/components/jquery/src/traversing/findFilter.js +100 -0
  83. data/lib/kanpachi/doc/template/components/jquery/src/traversing/var/rneedsContext.js +6 -0
  84. data/lib/kanpachi/doc/template/components/jquery/src/var/class2type.js +4 -0
  85. data/lib/kanpachi/doc/template/components/jquery/src/var/concat.js +5 -0
  86. data/lib/kanpachi/doc/template/components/jquery/src/var/deletedIds.js +3 -0
  87. data/lib/kanpachi/doc/template/components/jquery/src/var/hasOwn.js +5 -0
  88. data/lib/kanpachi/doc/template/components/jquery/src/var/indexOf.js +5 -0
  89. data/lib/kanpachi/doc/template/components/jquery/src/var/pnum.js +3 -0
  90. data/lib/kanpachi/doc/template/components/jquery/src/var/push.js +5 -0
  91. data/lib/kanpachi/doc/template/components/jquery/src/var/rnotwhite.js +3 -0
  92. data/lib/kanpachi/doc/template/components/jquery/src/var/slice.js +5 -0
  93. data/lib/kanpachi/doc/template/components/jquery/src/var/strundefined.js +3 -0
  94. data/lib/kanpachi/doc/template/components/jquery/src/var/support.js +4 -0
  95. data/lib/kanpachi/doc/template/components/jquery/src/var/toString.js +5 -0
  96. data/lib/kanpachi/doc/template/components/jquery/src/var/trim.js +3 -0
  97. data/lib/kanpachi/doc/template/components/jquery/src/wrap.js +75 -0
  98. data/lib/kanpachi/doc/template/components/respond/.bower.json +20 -0
  99. data/lib/kanpachi/doc/template/components/respond/Gruntfile.js +90 -0
  100. data/lib/kanpachi/doc/template/components/respond/LICENSE-MIT +22 -0
  101. data/lib/kanpachi/doc/template/components/respond/README.md +114 -0
  102. data/lib/kanpachi/doc/template/components/respond/bower.json +10 -0
  103. data/lib/kanpachi/doc/template/components/respond/cross-domain/example.html +24 -0
  104. data/lib/kanpachi/doc/template/components/respond/cross-domain/respond-proxy.html +96 -0
  105. data/lib/kanpachi/doc/template/components/respond/cross-domain/respond.proxy.gif +0 -0
  106. data/lib/kanpachi/doc/template/components/respond/cross-domain/respond.proxy.js +127 -0
  107. data/lib/kanpachi/doc/template/components/respond/dest/respond.matchmedia.addListener.min.js +5 -0
  108. data/lib/kanpachi/doc/template/components/respond/dest/respond.matchmedia.addListener.src.js +273 -0
  109. data/lib/kanpachi/doc/template/components/respond/dest/respond.min.js +5 -0
  110. data/lib/kanpachi/doc/template/components/respond/dest/respond.src.js +224 -0
  111. data/lib/kanpachi/doc/template/components/respond/package.json +32 -0
  112. data/lib/kanpachi/doc/template/components/respond/src/matchmedia.addListener.js +76 -0
  113. data/lib/kanpachi/doc/template/components/respond/src/matchmedia.polyfill.js +36 -0
  114. data/lib/kanpachi/doc/template/components/respond/src/respond.js +341 -0
  115. data/lib/kanpachi/doc/template/config.rb +4 -0
  116. data/lib/kanpachi/doc/template/source/fonts/glyphicons-halflings-regular.eot +0 -0
  117. data/lib/kanpachi/doc/template/source/fonts/glyphicons-halflings-regular.svg +201 -200
  118. data/lib/kanpachi/doc/template/source/fonts/glyphicons-halflings-regular.ttf +0 -0
  119. data/lib/kanpachi/doc/template/source/fonts/glyphicons-halflings-regular.woff +0 -0
  120. data/lib/kanpachi/doc/template/source/javascripts/all.coffee +2 -0
  121. data/lib/kanpachi/doc/template/source/javascripts/bootstrap.js +271 -319
  122. data/lib/kanpachi/doc/template/source/javascripts/bootstrap.min.js +6 -6
  123. data/lib/kanpachi/doc/template/source/javascripts/ie.coffee +2 -0
  124. data/lib/kanpachi/doc/template/source/layouts/layout.slim +4 -6
  125. data/lib/kanpachi/doc/template/source/stylesheets/bootstrap-theme.css +192 -229
  126. data/lib/kanpachi/doc/template/source/stylesheets/bootstrap-theme.css.map +1 -0
  127. data/lib/kanpachi/doc/template/source/stylesheets/bootstrap-theme.min.css +7 -1
  128. data/lib/kanpachi/doc/template/source/stylesheets/bootstrap.css +2036 -3056
  129. data/lib/kanpachi/doc/template/source/stylesheets/bootstrap.css.map +1 -0
  130. data/lib/kanpachi/doc/template/source/stylesheets/bootstrap.min.css +6 -8
  131. data/lib/kanpachi/version.rb +1 -1
  132. data/wercker.yml +27 -0
  133. metadata +143 -31
  134. data/lib/kanpachi/doc/template/source/javascripts/all.js +0 -1
  135. data/lib/kanpachi/doc/template/source/javascripts/jquery-1.10.2.min.js +0 -6
  136. data/lib/kanpachi/doc/template/source/javascripts/respond.min.js +0 -7
@@ -0,0 +1,13 @@
1
+ define([
2
+ "./core",
3
+ "./traversing"
4
+ ], function( jQuery ) {
5
+
6
+ // The number of elements contained in the matched element set
7
+ jQuery.fn.size = function() {
8
+ return this.length;
9
+ };
10
+
11
+ jQuery.fn.andSelf = jQuery.fn.addBack;
12
+
13
+ });
@@ -0,0 +1,50 @@
1
+ define([
2
+ "./core",
3
+ "./core/access",
4
+ "./css"
5
+ ], function( jQuery, access ) {
6
+
7
+ // Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
8
+ jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
9
+ jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) {
10
+ // margin is only for outerHeight, outerWidth
11
+ jQuery.fn[ funcName ] = function( margin, value ) {
12
+ var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
13
+ extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
14
+
15
+ return access( this, function( elem, type, value ) {
16
+ var doc;
17
+
18
+ if ( jQuery.isWindow( elem ) ) {
19
+ // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
20
+ // isn't a whole lot we can do. See pull request at this URL for discussion:
21
+ // https://github.com/jquery/jquery/pull/764
22
+ return elem.document.documentElement[ "client" + name ];
23
+ }
24
+
25
+ // Get document width or height
26
+ if ( elem.nodeType === 9 ) {
27
+ doc = elem.documentElement;
28
+
29
+ // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest
30
+ // unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.
31
+ return Math.max(
32
+ elem.body[ "scroll" + name ], doc[ "scroll" + name ],
33
+ elem.body[ "offset" + name ], doc[ "offset" + name ],
34
+ doc[ "client" + name ]
35
+ );
36
+ }
37
+
38
+ return value === undefined ?
39
+ // Get width or height on the element, requesting but not forcing parseFloat
40
+ jQuery.css( elem, type, extra ) :
41
+
42
+ // Set width or height on the element
43
+ jQuery.style( elem, type, value, extra );
44
+ }, type, chainable ? margin : undefined, chainable, null );
45
+ };
46
+ });
47
+ });
48
+
49
+ return jQuery;
50
+ });
@@ -0,0 +1,648 @@
1
+ define([
2
+ "./core",
3
+ "./var/pnum",
4
+ "./css/var/cssExpand",
5
+ "./css/var/isHidden",
6
+ "./css/defaultDisplay",
7
+ "./effects/support",
8
+
9
+ "./core/init",
10
+ "./effects/Tween",
11
+ "./queue",
12
+ "./css",
13
+ "./deferred",
14
+ "./traversing"
15
+ ], function( jQuery, pnum, cssExpand, isHidden, defaultDisplay, support ) {
16
+
17
+ var
18
+ fxNow, timerId,
19
+ rfxtypes = /^(?:toggle|show|hide)$/,
20
+ rfxnum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ),
21
+ rrun = /queueHooks$/,
22
+ animationPrefilters = [ defaultPrefilter ],
23
+ tweeners = {
24
+ "*": [ function( prop, value ) {
25
+ var tween = this.createTween( prop, value ),
26
+ target = tween.cur(),
27
+ parts = rfxnum.exec( value ),
28
+ unit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
29
+
30
+ // Starting value computation is required for potential unit mismatches
31
+ start = ( jQuery.cssNumber[ prop ] || unit !== "px" && +target ) &&
32
+ rfxnum.exec( jQuery.css( tween.elem, prop ) ),
33
+ scale = 1,
34
+ maxIterations = 20;
35
+
36
+ if ( start && start[ 3 ] !== unit ) {
37
+ // Trust units reported by jQuery.css
38
+ unit = unit || start[ 3 ];
39
+
40
+ // Make sure we update the tween properties later on
41
+ parts = parts || [];
42
+
43
+ // Iteratively approximate from a nonzero starting point
44
+ start = +target || 1;
45
+
46
+ do {
47
+ // If previous iteration zeroed out, double until we get *something*
48
+ // Use a string for doubling factor so we don't accidentally see scale as unchanged below
49
+ scale = scale || ".5";
50
+
51
+ // Adjust and apply
52
+ start = start / scale;
53
+ jQuery.style( tween.elem, prop, start + unit );
54
+
55
+ // Update scale, tolerating zero or NaN from tween.cur()
56
+ // And breaking the loop if scale is unchanged or perfect, or if we've just had enough
57
+ } while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
58
+ }
59
+
60
+ // Update tween properties
61
+ if ( parts ) {
62
+ start = tween.start = +start || +target || 0;
63
+ tween.unit = unit;
64
+ // If a +=/-= token was provided, we're doing a relative animation
65
+ tween.end = parts[ 1 ] ?
66
+ start + ( parts[ 1 ] + 1 ) * parts[ 2 ] :
67
+ +parts[ 2 ];
68
+ }
69
+
70
+ return tween;
71
+ } ]
72
+ };
73
+
74
+ // Animations created synchronously will run synchronously
75
+ function createFxNow() {
76
+ setTimeout(function() {
77
+ fxNow = undefined;
78
+ });
79
+ return ( fxNow = jQuery.now() );
80
+ }
81
+
82
+ // Generate parameters to create a standard animation
83
+ function genFx( type, includeWidth ) {
84
+ var which,
85
+ attrs = { height: type },
86
+ i = 0;
87
+
88
+ // if we include width, step value is 1 to do all cssExpand values,
89
+ // if we don't include width, step value is 2 to skip over Left and Right
90
+ includeWidth = includeWidth ? 1 : 0;
91
+ for ( ; i < 4 ; i += 2 - includeWidth ) {
92
+ which = cssExpand[ i ];
93
+ attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
94
+ }
95
+
96
+ if ( includeWidth ) {
97
+ attrs.opacity = attrs.width = type;
98
+ }
99
+
100
+ return attrs;
101
+ }
102
+
103
+ function createTween( value, prop, animation ) {
104
+ var tween,
105
+ collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
106
+ index = 0,
107
+ length = collection.length;
108
+ for ( ; index < length; index++ ) {
109
+ if ( (tween = collection[ index ].call( animation, prop, value )) ) {
110
+
111
+ // we're done with this property
112
+ return tween;
113
+ }
114
+ }
115
+ }
116
+
117
+ function defaultPrefilter( elem, props, opts ) {
118
+ /* jshint validthis: true */
119
+ var prop, value, toggle, tween, hooks, oldfire, display, dDisplay,
120
+ anim = this,
121
+ orig = {},
122
+ style = elem.style,
123
+ hidden = elem.nodeType && isHidden( elem ),
124
+ dataShow = jQuery._data( elem, "fxshow" );
125
+
126
+ // handle queue: false promises
127
+ if ( !opts.queue ) {
128
+ hooks = jQuery._queueHooks( elem, "fx" );
129
+ if ( hooks.unqueued == null ) {
130
+ hooks.unqueued = 0;
131
+ oldfire = hooks.empty.fire;
132
+ hooks.empty.fire = function() {
133
+ if ( !hooks.unqueued ) {
134
+ oldfire();
135
+ }
136
+ };
137
+ }
138
+ hooks.unqueued++;
139
+
140
+ anim.always(function() {
141
+ // doing this makes sure that the complete handler will be called
142
+ // before this completes
143
+ anim.always(function() {
144
+ hooks.unqueued--;
145
+ if ( !jQuery.queue( elem, "fx" ).length ) {
146
+ hooks.empty.fire();
147
+ }
148
+ });
149
+ });
150
+ }
151
+
152
+ // height/width overflow pass
153
+ if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
154
+ // Make sure that nothing sneaks out
155
+ // Record all 3 overflow attributes because IE does not
156
+ // change the overflow attribute when overflowX and
157
+ // overflowY are set to the same value
158
+ opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
159
+
160
+ // Set display property to inline-block for height/width
161
+ // animations on inline elements that are having width/height animated
162
+ display = jQuery.css( elem, "display" );
163
+ dDisplay = defaultDisplay( elem.nodeName );
164
+ if ( display === "none" ) {
165
+ display = dDisplay;
166
+ }
167
+ if ( display === "inline" &&
168
+ jQuery.css( elem, "float" ) === "none" ) {
169
+
170
+ // inline-level elements accept inline-block;
171
+ // block-level elements need to be inline with layout
172
+ if ( !support.inlineBlockNeedsLayout || dDisplay === "inline" ) {
173
+ style.display = "inline-block";
174
+ } else {
175
+ style.zoom = 1;
176
+ }
177
+ }
178
+ }
179
+
180
+ if ( opts.overflow ) {
181
+ style.overflow = "hidden";
182
+ if ( !support.shrinkWrapBlocks() ) {
183
+ anim.always(function() {
184
+ style.overflow = opts.overflow[ 0 ];
185
+ style.overflowX = opts.overflow[ 1 ];
186
+ style.overflowY = opts.overflow[ 2 ];
187
+ });
188
+ }
189
+ }
190
+
191
+ // show/hide pass
192
+ for ( prop in props ) {
193
+ value = props[ prop ];
194
+ if ( rfxtypes.exec( value ) ) {
195
+ delete props[ prop ];
196
+ toggle = toggle || value === "toggle";
197
+ if ( value === ( hidden ? "hide" : "show" ) ) {
198
+
199
+ // If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden
200
+ if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
201
+ hidden = true;
202
+ } else {
203
+ continue;
204
+ }
205
+ }
206
+ orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
207
+ }
208
+ }
209
+
210
+ if ( !jQuery.isEmptyObject( orig ) ) {
211
+ if ( dataShow ) {
212
+ if ( "hidden" in dataShow ) {
213
+ hidden = dataShow.hidden;
214
+ }
215
+ } else {
216
+ dataShow = jQuery._data( elem, "fxshow", {} );
217
+ }
218
+
219
+ // store state if its toggle - enables .stop().toggle() to "reverse"
220
+ if ( toggle ) {
221
+ dataShow.hidden = !hidden;
222
+ }
223
+ if ( hidden ) {
224
+ jQuery( elem ).show();
225
+ } else {
226
+ anim.done(function() {
227
+ jQuery( elem ).hide();
228
+ });
229
+ }
230
+ anim.done(function() {
231
+ var prop;
232
+ jQuery._removeData( elem, "fxshow" );
233
+ for ( prop in orig ) {
234
+ jQuery.style( elem, prop, orig[ prop ] );
235
+ }
236
+ });
237
+ for ( prop in orig ) {
238
+ tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
239
+
240
+ if ( !( prop in dataShow ) ) {
241
+ dataShow[ prop ] = tween.start;
242
+ if ( hidden ) {
243
+ tween.end = tween.start;
244
+ tween.start = prop === "width" || prop === "height" ? 1 : 0;
245
+ }
246
+ }
247
+ }
248
+ }
249
+ }
250
+
251
+ function propFilter( props, specialEasing ) {
252
+ var index, name, easing, value, hooks;
253
+
254
+ // camelCase, specialEasing and expand cssHook pass
255
+ for ( index in props ) {
256
+ name = jQuery.camelCase( index );
257
+ easing = specialEasing[ name ];
258
+ value = props[ index ];
259
+ if ( jQuery.isArray( value ) ) {
260
+ easing = value[ 1 ];
261
+ value = props[ index ] = value[ 0 ];
262
+ }
263
+
264
+ if ( index !== name ) {
265
+ props[ name ] = value;
266
+ delete props[ index ];
267
+ }
268
+
269
+ hooks = jQuery.cssHooks[ name ];
270
+ if ( hooks && "expand" in hooks ) {
271
+ value = hooks.expand( value );
272
+ delete props[ name ];
273
+
274
+ // not quite $.extend, this wont overwrite keys already present.
275
+ // also - reusing 'index' from above because we have the correct "name"
276
+ for ( index in value ) {
277
+ if ( !( index in props ) ) {
278
+ props[ index ] = value[ index ];
279
+ specialEasing[ index ] = easing;
280
+ }
281
+ }
282
+ } else {
283
+ specialEasing[ name ] = easing;
284
+ }
285
+ }
286
+ }
287
+
288
+ function Animation( elem, properties, options ) {
289
+ var result,
290
+ stopped,
291
+ index = 0,
292
+ length = animationPrefilters.length,
293
+ deferred = jQuery.Deferred().always( function() {
294
+ // don't match elem in the :animated selector
295
+ delete tick.elem;
296
+ }),
297
+ tick = function() {
298
+ if ( stopped ) {
299
+ return false;
300
+ }
301
+ var currentTime = fxNow || createFxNow(),
302
+ remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
303
+ // archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)
304
+ temp = remaining / animation.duration || 0,
305
+ percent = 1 - temp,
306
+ index = 0,
307
+ length = animation.tweens.length;
308
+
309
+ for ( ; index < length ; index++ ) {
310
+ animation.tweens[ index ].run( percent );
311
+ }
312
+
313
+ deferred.notifyWith( elem, [ animation, percent, remaining ]);
314
+
315
+ if ( percent < 1 && length ) {
316
+ return remaining;
317
+ } else {
318
+ deferred.resolveWith( elem, [ animation ] );
319
+ return false;
320
+ }
321
+ },
322
+ animation = deferred.promise({
323
+ elem: elem,
324
+ props: jQuery.extend( {}, properties ),
325
+ opts: jQuery.extend( true, { specialEasing: {} }, options ),
326
+ originalProperties: properties,
327
+ originalOptions: options,
328
+ startTime: fxNow || createFxNow(),
329
+ duration: options.duration,
330
+ tweens: [],
331
+ createTween: function( prop, end ) {
332
+ var tween = jQuery.Tween( elem, animation.opts, prop, end,
333
+ animation.opts.specialEasing[ prop ] || animation.opts.easing );
334
+ animation.tweens.push( tween );
335
+ return tween;
336
+ },
337
+ stop: function( gotoEnd ) {
338
+ var index = 0,
339
+ // if we are going to the end, we want to run all the tweens
340
+ // otherwise we skip this part
341
+ length = gotoEnd ? animation.tweens.length : 0;
342
+ if ( stopped ) {
343
+ return this;
344
+ }
345
+ stopped = true;
346
+ for ( ; index < length ; index++ ) {
347
+ animation.tweens[ index ].run( 1 );
348
+ }
349
+
350
+ // resolve when we played the last frame
351
+ // otherwise, reject
352
+ if ( gotoEnd ) {
353
+ deferred.resolveWith( elem, [ animation, gotoEnd ] );
354
+ } else {
355
+ deferred.rejectWith( elem, [ animation, gotoEnd ] );
356
+ }
357
+ return this;
358
+ }
359
+ }),
360
+ props = animation.props;
361
+
362
+ propFilter( props, animation.opts.specialEasing );
363
+
364
+ for ( ; index < length ; index++ ) {
365
+ result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
366
+ if ( result ) {
367
+ return result;
368
+ }
369
+ }
370
+
371
+ jQuery.map( props, createTween, animation );
372
+
373
+ if ( jQuery.isFunction( animation.opts.start ) ) {
374
+ animation.opts.start.call( elem, animation );
375
+ }
376
+
377
+ jQuery.fx.timer(
378
+ jQuery.extend( tick, {
379
+ elem: elem,
380
+ anim: animation,
381
+ queue: animation.opts.queue
382
+ })
383
+ );
384
+
385
+ // attach callbacks from options
386
+ return animation.progress( animation.opts.progress )
387
+ .done( animation.opts.done, animation.opts.complete )
388
+ .fail( animation.opts.fail )
389
+ .always( animation.opts.always );
390
+ }
391
+
392
+ jQuery.Animation = jQuery.extend( Animation, {
393
+ tweener: function( props, callback ) {
394
+ if ( jQuery.isFunction( props ) ) {
395
+ callback = props;
396
+ props = [ "*" ];
397
+ } else {
398
+ props = props.split(" ");
399
+ }
400
+
401
+ var prop,
402
+ index = 0,
403
+ length = props.length;
404
+
405
+ for ( ; index < length ; index++ ) {
406
+ prop = props[ index ];
407
+ tweeners[ prop ] = tweeners[ prop ] || [];
408
+ tweeners[ prop ].unshift( callback );
409
+ }
410
+ },
411
+
412
+ prefilter: function( callback, prepend ) {
413
+ if ( prepend ) {
414
+ animationPrefilters.unshift( callback );
415
+ } else {
416
+ animationPrefilters.push( callback );
417
+ }
418
+ }
419
+ });
420
+
421
+ jQuery.speed = function( speed, easing, fn ) {
422
+ var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
423
+ complete: fn || !fn && easing ||
424
+ jQuery.isFunction( speed ) && speed,
425
+ duration: speed,
426
+ easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
427
+ };
428
+
429
+ opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
430
+ opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
431
+
432
+ // normalize opt.queue - true/undefined/null -> "fx"
433
+ if ( opt.queue == null || opt.queue === true ) {
434
+ opt.queue = "fx";
435
+ }
436
+
437
+ // Queueing
438
+ opt.old = opt.complete;
439
+
440
+ opt.complete = function() {
441
+ if ( jQuery.isFunction( opt.old ) ) {
442
+ opt.old.call( this );
443
+ }
444
+
445
+ if ( opt.queue ) {
446
+ jQuery.dequeue( this, opt.queue );
447
+ }
448
+ };
449
+
450
+ return opt;
451
+ };
452
+
453
+ jQuery.fn.extend({
454
+ fadeTo: function( speed, to, easing, callback ) {
455
+
456
+ // show any hidden elements after setting opacity to 0
457
+ return this.filter( isHidden ).css( "opacity", 0 ).show()
458
+
459
+ // animate to the value specified
460
+ .end().animate({ opacity: to }, speed, easing, callback );
461
+ },
462
+ animate: function( prop, speed, easing, callback ) {
463
+ var empty = jQuery.isEmptyObject( prop ),
464
+ optall = jQuery.speed( speed, easing, callback ),
465
+ doAnimation = function() {
466
+ // Operate on a copy of prop so per-property easing won't be lost
467
+ var anim = Animation( this, jQuery.extend( {}, prop ), optall );
468
+
469
+ // Empty animations, or finishing resolves immediately
470
+ if ( empty || jQuery._data( this, "finish" ) ) {
471
+ anim.stop( true );
472
+ }
473
+ };
474
+ doAnimation.finish = doAnimation;
475
+
476
+ return empty || optall.queue === false ?
477
+ this.each( doAnimation ) :
478
+ this.queue( optall.queue, doAnimation );
479
+ },
480
+ stop: function( type, clearQueue, gotoEnd ) {
481
+ var stopQueue = function( hooks ) {
482
+ var stop = hooks.stop;
483
+ delete hooks.stop;
484
+ stop( gotoEnd );
485
+ };
486
+
487
+ if ( typeof type !== "string" ) {
488
+ gotoEnd = clearQueue;
489
+ clearQueue = type;
490
+ type = undefined;
491
+ }
492
+ if ( clearQueue && type !== false ) {
493
+ this.queue( type || "fx", [] );
494
+ }
495
+
496
+ return this.each(function() {
497
+ var dequeue = true,
498
+ index = type != null && type + "queueHooks",
499
+ timers = jQuery.timers,
500
+ data = jQuery._data( this );
501
+
502
+ if ( index ) {
503
+ if ( data[ index ] && data[ index ].stop ) {
504
+ stopQueue( data[ index ] );
505
+ }
506
+ } else {
507
+ for ( index in data ) {
508
+ if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
509
+ stopQueue( data[ index ] );
510
+ }
511
+ }
512
+ }
513
+
514
+ for ( index = timers.length; index--; ) {
515
+ if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
516
+ timers[ index ].anim.stop( gotoEnd );
517
+ dequeue = false;
518
+ timers.splice( index, 1 );
519
+ }
520
+ }
521
+
522
+ // start the next in the queue if the last step wasn't forced
523
+ // timers currently will call their complete callbacks, which will dequeue
524
+ // but only if they were gotoEnd
525
+ if ( dequeue || !gotoEnd ) {
526
+ jQuery.dequeue( this, type );
527
+ }
528
+ });
529
+ },
530
+ finish: function( type ) {
531
+ if ( type !== false ) {
532
+ type = type || "fx";
533
+ }
534
+ return this.each(function() {
535
+ var index,
536
+ data = jQuery._data( this ),
537
+ queue = data[ type + "queue" ],
538
+ hooks = data[ type + "queueHooks" ],
539
+ timers = jQuery.timers,
540
+ length = queue ? queue.length : 0;
541
+
542
+ // enable finishing flag on private data
543
+ data.finish = true;
544
+
545
+ // empty the queue first
546
+ jQuery.queue( this, type, [] );
547
+
548
+ if ( hooks && hooks.stop ) {
549
+ hooks.stop.call( this, true );
550
+ }
551
+
552
+ // look for any active animations, and finish them
553
+ for ( index = timers.length; index--; ) {
554
+ if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
555
+ timers[ index ].anim.stop( true );
556
+ timers.splice( index, 1 );
557
+ }
558
+ }
559
+
560
+ // look for any animations in the old queue and finish them
561
+ for ( index = 0; index < length; index++ ) {
562
+ if ( queue[ index ] && queue[ index ].finish ) {
563
+ queue[ index ].finish.call( this );
564
+ }
565
+ }
566
+
567
+ // turn off finishing flag
568
+ delete data.finish;
569
+ });
570
+ }
571
+ });
572
+
573
+ jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
574
+ var cssFn = jQuery.fn[ name ];
575
+ jQuery.fn[ name ] = function( speed, easing, callback ) {
576
+ return speed == null || typeof speed === "boolean" ?
577
+ cssFn.apply( this, arguments ) :
578
+ this.animate( genFx( name, true ), speed, easing, callback );
579
+ };
580
+ });
581
+
582
+ // Generate shortcuts for custom animations
583
+ jQuery.each({
584
+ slideDown: genFx("show"),
585
+ slideUp: genFx("hide"),
586
+ slideToggle: genFx("toggle"),
587
+ fadeIn: { opacity: "show" },
588
+ fadeOut: { opacity: "hide" },
589
+ fadeToggle: { opacity: "toggle" }
590
+ }, function( name, props ) {
591
+ jQuery.fn[ name ] = function( speed, easing, callback ) {
592
+ return this.animate( props, speed, easing, callback );
593
+ };
594
+ });
595
+
596
+ jQuery.timers = [];
597
+ jQuery.fx.tick = function() {
598
+ var timer,
599
+ timers = jQuery.timers,
600
+ i = 0;
601
+
602
+ fxNow = jQuery.now();
603
+
604
+ for ( ; i < timers.length; i++ ) {
605
+ timer = timers[ i ];
606
+ // Checks the timer has not already been removed
607
+ if ( !timer() && timers[ i ] === timer ) {
608
+ timers.splice( i--, 1 );
609
+ }
610
+ }
611
+
612
+ if ( !timers.length ) {
613
+ jQuery.fx.stop();
614
+ }
615
+ fxNow = undefined;
616
+ };
617
+
618
+ jQuery.fx.timer = function( timer ) {
619
+ jQuery.timers.push( timer );
620
+ if ( timer() ) {
621
+ jQuery.fx.start();
622
+ } else {
623
+ jQuery.timers.pop();
624
+ }
625
+ };
626
+
627
+ jQuery.fx.interval = 13;
628
+
629
+ jQuery.fx.start = function() {
630
+ if ( !timerId ) {
631
+ timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
632
+ }
633
+ };
634
+
635
+ jQuery.fx.stop = function() {
636
+ clearInterval( timerId );
637
+ timerId = null;
638
+ };
639
+
640
+ jQuery.fx.speeds = {
641
+ slow: 600,
642
+ fast: 200,
643
+ // Default speed
644
+ _default: 400
645
+ };
646
+
647
+ return jQuery;
648
+ });