growbot-web 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (229) hide show
  1. checksums.yaml +7 -0
  2. data/.bowerrc +3 -0
  3. data/.gitignore +22 -0
  4. data/Gemfile +11 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +35 -0
  7. data/Rakefile +39 -0
  8. data/arduino_data.txt +6137 -0
  9. data/bower.json +19 -0
  10. data/config.ru +13 -0
  11. data/growbot-web.gemspec +35 -0
  12. data/lib/growbot/web.rb +6 -0
  13. data/lib/growbot/web/app.rb +49 -0
  14. data/lib/growbot/web/data.rb +42 -0
  15. data/lib/growbot/web/env.rb +9 -0
  16. data/lib/growbot/web/version.rb +5 -0
  17. data/lib/growbot/web/views/coffee/app.coffee +131 -0
  18. data/lib/growbot/web/views/index.haml +10 -0
  19. data/lib/growbot/web/views/layout.haml +20 -0
  20. data/lib/growbot/web/views/sass/app.scss +59 -0
  21. data/lib/growbot/web/views/sass/bitters/_bitters.scss +16 -0
  22. data/lib/growbot/web/views/sass/bitters/_flashes.scss +11 -0
  23. data/lib/growbot/web/views/sass/bitters/_forms.scss +95 -0
  24. data/lib/growbot/web/views/sass/bitters/_grid-settings.scss +14 -0
  25. data/lib/growbot/web/views/sass/bitters/_lists.scss +31 -0
  26. data/lib/growbot/web/views/sass/bitters/_tables.scss +22 -0
  27. data/lib/growbot/web/views/sass/bitters/_typography.scss +104 -0
  28. data/lib/growbot/web/views/sass/bitters/_variables.scss +43 -0
  29. data/lib/growbot/web/views/sass/bitters/extends/_base.scss +1 -0
  30. data/lib/growbot/web/views/sass/bitters/extends/_button.scss +7 -0
  31. data/lib/growbot/web/views/sass/bitters/mixins/_base.scss +1 -0
  32. data/lib/growbot/web/views/sass/bitters/mixins/_flash.scss +15 -0
  33. data/lib/growbot/web/views/sass/bourbon/_bourbon-deprecated-upcoming.scss +8 -0
  34. data/lib/growbot/web/views/sass/bourbon/_bourbon.scss +78 -0
  35. data/lib/growbot/web/views/sass/bourbon/addons/_button.scss +374 -0
  36. data/lib/growbot/web/views/sass/bourbon/addons/_clearfix.scss +23 -0
  37. data/lib/growbot/web/views/sass/bourbon/addons/_directional-values.scss +111 -0
  38. data/lib/growbot/web/views/sass/bourbon/addons/_ellipsis.scss +7 -0
  39. data/lib/growbot/web/views/sass/bourbon/addons/_font-family.scss +5 -0
  40. data/lib/growbot/web/views/sass/bourbon/addons/_hide-text.scss +10 -0
  41. data/lib/growbot/web/views/sass/bourbon/addons/_html5-input-types.scss +86 -0
  42. data/lib/growbot/web/views/sass/bourbon/addons/_position.scss +32 -0
  43. data/lib/growbot/web/views/sass/bourbon/addons/_prefixer.scss +45 -0
  44. data/lib/growbot/web/views/sass/bourbon/addons/_retina-image.scss +31 -0
  45. data/lib/growbot/web/views/sass/bourbon/addons/_size.scss +16 -0
  46. data/lib/growbot/web/views/sass/bourbon/addons/_timing-functions.scss +32 -0
  47. data/lib/growbot/web/views/sass/bourbon/addons/_triangle.scss +83 -0
  48. data/lib/growbot/web/views/sass/bourbon/addons/_word-wrap.scss +8 -0
  49. data/lib/growbot/web/views/sass/bourbon/css3/_animation.scss +52 -0
  50. data/lib/growbot/web/views/sass/bourbon/css3/_appearance.scss +3 -0
  51. data/lib/growbot/web/views/sass/bourbon/css3/_backface-visibility.scss +6 -0
  52. data/lib/growbot/web/views/sass/bourbon/css3/_background-image.scss +42 -0
  53. data/lib/growbot/web/views/sass/bourbon/css3/_background.scss +55 -0
  54. data/lib/growbot/web/views/sass/bourbon/css3/_border-image.scss +59 -0
  55. data/lib/growbot/web/views/sass/bourbon/css3/_border-radius.scss +22 -0
  56. data/lib/growbot/web/views/sass/bourbon/css3/_box-sizing.scss +4 -0
  57. data/lib/growbot/web/views/sass/bourbon/css3/_calc.scss +4 -0
  58. data/lib/growbot/web/views/sass/bourbon/css3/_columns.scss +47 -0
  59. data/lib/growbot/web/views/sass/bourbon/css3/_filter.scss +5 -0
  60. data/lib/growbot/web/views/sass/bourbon/css3/_flex-box.scss +321 -0
  61. data/lib/growbot/web/views/sass/bourbon/css3/_font-face.scss +23 -0
  62. data/lib/growbot/web/views/sass/bourbon/css3/_font-feature-settings.scss +10 -0
  63. data/lib/growbot/web/views/sass/bourbon/css3/_hidpi-media-query.scss +10 -0
  64. data/lib/growbot/web/views/sass/bourbon/css3/_hyphens.scss +4 -0
  65. data/lib/growbot/web/views/sass/bourbon/css3/_image-rendering.scss +14 -0
  66. data/lib/growbot/web/views/sass/bourbon/css3/_keyframes.scss +35 -0
  67. data/lib/growbot/web/views/sass/bourbon/css3/_linear-gradient.scss +38 -0
  68. data/lib/growbot/web/views/sass/bourbon/css3/_perspective.scss +8 -0
  69. data/lib/growbot/web/views/sass/bourbon/css3/_placeholder.scss +8 -0
  70. data/lib/growbot/web/views/sass/bourbon/css3/_radial-gradient.scss +39 -0
  71. data/lib/growbot/web/views/sass/bourbon/css3/_transform.scss +15 -0
  72. data/lib/growbot/web/views/sass/bourbon/css3/_transition.scss +77 -0
  73. data/lib/growbot/web/views/sass/bourbon/css3/_user-select.scss +3 -0
  74. data/lib/growbot/web/views/sass/bourbon/functions/_assign.scss +11 -0
  75. data/lib/growbot/web/views/sass/bourbon/functions/_color-lightness.scss +13 -0
  76. data/lib/growbot/web/views/sass/bourbon/functions/_flex-grid.scss +39 -0
  77. data/lib/growbot/web/views/sass/bourbon/functions/_golden-ratio.scss +3 -0
  78. data/lib/growbot/web/views/sass/bourbon/functions/_grid-width.scss +13 -0
  79. data/lib/growbot/web/views/sass/bourbon/functions/_modular-scale.scss +66 -0
  80. data/lib/growbot/web/views/sass/bourbon/functions/_px-to-em.scss +13 -0
  81. data/lib/growbot/web/views/sass/bourbon/functions/_px-to-rem.scss +15 -0
  82. data/lib/growbot/web/views/sass/bourbon/functions/_strip-units.scss +5 -0
  83. data/lib/growbot/web/views/sass/bourbon/functions/_tint-shade.scss +9 -0
  84. data/lib/growbot/web/views/sass/bourbon/functions/_transition-property-name.scss +22 -0
  85. data/lib/growbot/web/views/sass/bourbon/functions/_unpack.scss +17 -0
  86. data/lib/growbot/web/views/sass/bourbon/helpers/_convert-units.scss +15 -0
  87. data/lib/growbot/web/views/sass/bourbon/helpers/_gradient-positions-parser.scss +13 -0
  88. data/lib/growbot/web/views/sass/bourbon/helpers/_is-num.scss +8 -0
  89. data/lib/growbot/web/views/sass/bourbon/helpers/_linear-angle-parser.scss +25 -0
  90. data/lib/growbot/web/views/sass/bourbon/helpers/_linear-gradient-parser.scss +41 -0
  91. data/lib/growbot/web/views/sass/bourbon/helpers/_linear-positions-parser.scss +61 -0
  92. data/lib/growbot/web/views/sass/bourbon/helpers/_linear-side-corner-parser.scss +31 -0
  93. data/lib/growbot/web/views/sass/bourbon/helpers/_radial-arg-parser.scss +69 -0
  94. data/lib/growbot/web/views/sass/bourbon/helpers/_radial-gradient-parser.scss +50 -0
  95. data/lib/growbot/web/views/sass/bourbon/helpers/_radial-positions-parser.scss +18 -0
  96. data/lib/growbot/web/views/sass/bourbon/helpers/_render-gradients.scss +26 -0
  97. data/lib/growbot/web/views/sass/bourbon/helpers/_shape-size-stripper.scss +10 -0
  98. data/lib/growbot/web/views/sass/bourbon/helpers/_str-to-num.scss +50 -0
  99. data/lib/growbot/web/views/sass/bourbon/settings/_prefixer.scss +6 -0
  100. data/lib/growbot/web/views/sass/bourbon/settings/_px-to-em.scss +1 -0
  101. data/lib/growbot/web/views/sass/neat/_neat-helpers.scss +7 -0
  102. data/lib/growbot/web/views/sass/neat/_neat.scss +21 -0
  103. data/lib/growbot/web/views/sass/neat/functions/_new-breakpoint.scss +16 -0
  104. data/lib/growbot/web/views/sass/neat/functions/_private.scss +125 -0
  105. data/lib/growbot/web/views/sass/neat/grid/_fill-parent.scss +7 -0
  106. data/lib/growbot/web/views/sass/neat/grid/_grid.scss +5 -0
  107. data/lib/growbot/web/views/sass/neat/grid/_media.scss +38 -0
  108. data/lib/growbot/web/views/sass/neat/grid/_omega.scss +61 -0
  109. data/lib/growbot/web/views/sass/neat/grid/_outer-container.scss +8 -0
  110. data/lib/growbot/web/views/sass/neat/grid/_pad.scss +8 -0
  111. data/lib/growbot/web/views/sass/neat/grid/_private.scss +43 -0
  112. data/lib/growbot/web/views/sass/neat/grid/_reset.scss +12 -0
  113. data/lib/growbot/web/views/sass/neat/grid/_row.scss +17 -0
  114. data/lib/growbot/web/views/sass/neat/grid/_shift.scss +16 -0
  115. data/lib/growbot/web/views/sass/neat/grid/_span-columns.scss +43 -0
  116. data/lib/growbot/web/views/sass/neat/grid/_to-deprecate.scss +57 -0
  117. data/lib/growbot/web/views/sass/neat/grid/_visual-grid.scss +41 -0
  118. data/lib/growbot/web/views/sass/neat/settings/_grid.scss +7 -0
  119. data/lib/growbot/web/views/sass/neat/settings/_visual-grid.scss +5 -0
  120. data/lib/growbot/web/views/sass/refills/_navigation.scss +190 -0
  121. data/lib/growbot/web/views/sass/refills/_refills.scss +1 -0
  122. data/lib/growbot/web/views/sass/widgets/_big-number.scss +21 -0
  123. data/lib/growbot/web/views/sass/widgets/_widgets.scss +1 -0
  124. data/public/javascripts/app.js +150 -0
  125. data/public/stylesheets/app.css +1 -0
  126. data/public/vendor/colorbrewer/.bower.json +35 -0
  127. data/public/vendor/colorbrewer/LICENSE +38 -0
  128. data/public/vendor/colorbrewer/README.md +7 -0
  129. data/public/vendor/colorbrewer/bower.json +23 -0
  130. data/public/vendor/colorbrewer/colorbrewer.css +1690 -0
  131. data/public/vendor/colorbrewer/colorbrewer.js +302 -0
  132. data/public/vendor/d3/.bower.json +35 -0
  133. data/public/vendor/d3/CONTRIBUTING.md +25 -0
  134. data/public/vendor/d3/LICENSE +26 -0
  135. data/public/vendor/d3/README.md +9 -0
  136. data/public/vendor/d3/bower.json +24 -0
  137. data/public/vendor/d3/composer.json +19 -0
  138. data/public/vendor/d3/d3.js +9263 -0
  139. data/public/vendor/d3/d3.min.js +5 -0
  140. data/public/vendor/jquery/.bower.json +38 -0
  141. data/public/vendor/jquery/MIT-LICENSE.txt +21 -0
  142. data/public/vendor/jquery/bower.json +27 -0
  143. data/public/vendor/jquery/dist/jquery.js +9190 -0
  144. data/public/vendor/jquery/dist/jquery.min.js +5 -0
  145. data/public/vendor/jquery/dist/jquery.min.map +1 -0
  146. data/public/vendor/jquery/src/ajax.js +806 -0
  147. data/public/vendor/jquery/src/ajax/jsonp.js +89 -0
  148. data/public/vendor/jquery/src/ajax/load.js +75 -0
  149. data/public/vendor/jquery/src/ajax/parseJSON.js +13 -0
  150. data/public/vendor/jquery/src/ajax/parseXML.js +28 -0
  151. data/public/vendor/jquery/src/ajax/script.js +64 -0
  152. data/public/vendor/jquery/src/ajax/var/nonce.js +5 -0
  153. data/public/vendor/jquery/src/ajax/var/rquery.js +3 -0
  154. data/public/vendor/jquery/src/ajax/xhr.js +135 -0
  155. data/public/vendor/jquery/src/attributes.js +11 -0
  156. data/public/vendor/jquery/src/attributes/attr.js +143 -0
  157. data/public/vendor/jquery/src/attributes/classes.js +158 -0
  158. data/public/vendor/jquery/src/attributes/prop.js +96 -0
  159. data/public/vendor/jquery/src/attributes/support.js +35 -0
  160. data/public/vendor/jquery/src/attributes/val.js +163 -0
  161. data/public/vendor/jquery/src/callbacks.js +205 -0
  162. data/public/vendor/jquery/src/core.js +498 -0
  163. data/public/vendor/jquery/src/core/access.js +60 -0
  164. data/public/vendor/jquery/src/core/init.js +123 -0
  165. data/public/vendor/jquery/src/core/parseHTML.js +39 -0
  166. data/public/vendor/jquery/src/core/ready.js +97 -0
  167. data/public/vendor/jquery/src/core/var/rsingleTag.js +4 -0
  168. data/public/vendor/jquery/src/css.js +451 -0
  169. data/public/vendor/jquery/src/css/addGetHookIf.js +24 -0
  170. data/public/vendor/jquery/src/css/curCSS.js +57 -0
  171. data/public/vendor/jquery/src/css/defaultDisplay.js +70 -0
  172. data/public/vendor/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  173. data/public/vendor/jquery/src/css/support.js +91 -0
  174. data/public/vendor/jquery/src/css/swap.js +28 -0
  175. data/public/vendor/jquery/src/css/var/cssExpand.js +3 -0
  176. data/public/vendor/jquery/src/css/var/getStyles.js +5 -0
  177. data/public/vendor/jquery/src/css/var/isHidden.js +13 -0
  178. data/public/vendor/jquery/src/css/var/rmargin.js +3 -0
  179. data/public/vendor/jquery/src/css/var/rnumnonpx.js +5 -0
  180. data/public/vendor/jquery/src/data.js +179 -0
  181. data/public/vendor/jquery/src/data/Data.js +181 -0
  182. data/public/vendor/jquery/src/data/accepts.js +20 -0
  183. data/public/vendor/jquery/src/data/var/data_priv.js +5 -0
  184. data/public/vendor/jquery/src/data/var/data_user.js +5 -0
  185. data/public/vendor/jquery/src/deferred.js +149 -0
  186. data/public/vendor/jquery/src/deprecated.js +13 -0
  187. data/public/vendor/jquery/src/dimensions.js +50 -0
  188. data/public/vendor/jquery/src/effects.js +649 -0
  189. data/public/vendor/jquery/src/effects/Tween.js +114 -0
  190. data/public/vendor/jquery/src/effects/animatedSelector.js +13 -0
  191. data/public/vendor/jquery/src/event.js +868 -0
  192. data/public/vendor/jquery/src/event/alias.js +39 -0
  193. data/public/vendor/jquery/src/event/support.js +9 -0
  194. data/public/vendor/jquery/src/exports/amd.js +24 -0
  195. data/public/vendor/jquery/src/exports/global.js +32 -0
  196. data/public/vendor/jquery/src/intro.js +44 -0
  197. data/public/vendor/jquery/src/jquery.js +36 -0
  198. data/public/vendor/jquery/src/manipulation.js +582 -0
  199. data/public/vendor/jquery/src/manipulation/_evalUrl.js +18 -0
  200. data/public/vendor/jquery/src/manipulation/support.js +31 -0
  201. data/public/vendor/jquery/src/manipulation/var/rcheckableType.js +3 -0
  202. data/public/vendor/jquery/src/offset.js +204 -0
  203. data/public/vendor/jquery/src/outro.js +1 -0
  204. data/public/vendor/jquery/src/queue.js +142 -0
  205. data/public/vendor/jquery/src/queue/delay.js +22 -0
  206. data/public/vendor/jquery/src/selector-native.js +172 -0
  207. data/public/vendor/jquery/src/selector-sizzle.js +14 -0
  208. data/public/vendor/jquery/src/selector.js +1 -0
  209. data/public/vendor/jquery/src/serialize.js +111 -0
  210. data/public/vendor/jquery/src/sizzle/dist/sizzle.js +2044 -0
  211. data/public/vendor/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  212. data/public/vendor/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  213. data/public/vendor/jquery/src/traversing.js +200 -0
  214. data/public/vendor/jquery/src/traversing/findFilter.js +100 -0
  215. data/public/vendor/jquery/src/traversing/var/rneedsContext.js +6 -0
  216. data/public/vendor/jquery/src/var/arr.js +3 -0
  217. data/public/vendor/jquery/src/var/class2type.js +4 -0
  218. data/public/vendor/jquery/src/var/concat.js +5 -0
  219. data/public/vendor/jquery/src/var/hasOwn.js +5 -0
  220. data/public/vendor/jquery/src/var/indexOf.js +5 -0
  221. data/public/vendor/jquery/src/var/pnum.js +3 -0
  222. data/public/vendor/jquery/src/var/push.js +5 -0
  223. data/public/vendor/jquery/src/var/rnotwhite.js +3 -0
  224. data/public/vendor/jquery/src/var/slice.js +5 -0
  225. data/public/vendor/jquery/src/var/strundefined.js +3 -0
  226. data/public/vendor/jquery/src/var/support.js +4 -0
  227. data/public/vendor/jquery/src/var/toString.js +5 -0
  228. data/public/vendor/jquery/src/wrap.js +78 -0
  229. metadata +468 -0
@@ -0,0 +1,181 @@
1
+ define([
2
+ "../core",
3
+ "../var/rnotwhite",
4
+ "./accepts"
5
+ ], function( jQuery, rnotwhite ) {
6
+
7
+ function Data() {
8
+ // Support: Android < 4,
9
+ // Old WebKit does not have Object.preventExtensions/freeze method,
10
+ // return new empty object instead with no [[set]] accessor
11
+ Object.defineProperty( this.cache = {}, 0, {
12
+ get: function() {
13
+ return {};
14
+ }
15
+ });
16
+
17
+ this.expando = jQuery.expando + Math.random();
18
+ }
19
+
20
+ Data.uid = 1;
21
+ Data.accepts = jQuery.acceptData;
22
+
23
+ Data.prototype = {
24
+ key: function( owner ) {
25
+ // We can accept data for non-element nodes in modern browsers,
26
+ // but we should not, see #8335.
27
+ // Always return the key for a frozen object.
28
+ if ( !Data.accepts( owner ) ) {
29
+ return 0;
30
+ }
31
+
32
+ var descriptor = {},
33
+ // Check if the owner object already has a cache key
34
+ unlock = owner[ this.expando ];
35
+
36
+ // If not, create one
37
+ if ( !unlock ) {
38
+ unlock = Data.uid++;
39
+
40
+ // Secure it in a non-enumerable, non-writable property
41
+ try {
42
+ descriptor[ this.expando ] = { value: unlock };
43
+ Object.defineProperties( owner, descriptor );
44
+
45
+ // Support: Android < 4
46
+ // Fallback to a less secure definition
47
+ } catch ( e ) {
48
+ descriptor[ this.expando ] = unlock;
49
+ jQuery.extend( owner, descriptor );
50
+ }
51
+ }
52
+
53
+ // Ensure the cache object
54
+ if ( !this.cache[ unlock ] ) {
55
+ this.cache[ unlock ] = {};
56
+ }
57
+
58
+ return unlock;
59
+ },
60
+ set: function( owner, data, value ) {
61
+ var prop,
62
+ // There may be an unlock assigned to this node,
63
+ // if there is no entry for this "owner", create one inline
64
+ // and set the unlock as though an owner entry had always existed
65
+ unlock = this.key( owner ),
66
+ cache = this.cache[ unlock ];
67
+
68
+ // Handle: [ owner, key, value ] args
69
+ if ( typeof data === "string" ) {
70
+ cache[ data ] = value;
71
+
72
+ // Handle: [ owner, { properties } ] args
73
+ } else {
74
+ // Fresh assignments by object are shallow copied
75
+ if ( jQuery.isEmptyObject( cache ) ) {
76
+ jQuery.extend( this.cache[ unlock ], data );
77
+ // Otherwise, copy the properties one-by-one to the cache object
78
+ } else {
79
+ for ( prop in data ) {
80
+ cache[ prop ] = data[ prop ];
81
+ }
82
+ }
83
+ }
84
+ return cache;
85
+ },
86
+ get: function( owner, key ) {
87
+ // Either a valid cache is found, or will be created.
88
+ // New caches will be created and the unlock returned,
89
+ // allowing direct access to the newly created
90
+ // empty data object. A valid owner object must be provided.
91
+ var cache = this.cache[ this.key( owner ) ];
92
+
93
+ return key === undefined ?
94
+ cache : cache[ key ];
95
+ },
96
+ access: function( owner, key, value ) {
97
+ var stored;
98
+ // In cases where either:
99
+ //
100
+ // 1. No key was specified
101
+ // 2. A string key was specified, but no value provided
102
+ //
103
+ // Take the "read" path and allow the get method to determine
104
+ // which value to return, respectively either:
105
+ //
106
+ // 1. The entire cache object
107
+ // 2. The data stored at the key
108
+ //
109
+ if ( key === undefined ||
110
+ ((key && typeof key === "string") && value === undefined) ) {
111
+
112
+ stored = this.get( owner, key );
113
+
114
+ return stored !== undefined ?
115
+ stored : this.get( owner, jQuery.camelCase(key) );
116
+ }
117
+
118
+ // [*]When the key is not a string, or both a key and value
119
+ // are specified, set or extend (existing objects) with either:
120
+ //
121
+ // 1. An object of properties
122
+ // 2. A key and value
123
+ //
124
+ this.set( owner, key, value );
125
+
126
+ // Since the "set" path can have two possible entry points
127
+ // return the expected data based on which path was taken[*]
128
+ return value !== undefined ? value : key;
129
+ },
130
+ remove: function( owner, key ) {
131
+ var i, name, camel,
132
+ unlock = this.key( owner ),
133
+ cache = this.cache[ unlock ];
134
+
135
+ if ( key === undefined ) {
136
+ this.cache[ unlock ] = {};
137
+
138
+ } else {
139
+ // Support array or space separated string of keys
140
+ if ( jQuery.isArray( key ) ) {
141
+ // If "name" is an array of keys...
142
+ // When data is initially created, via ("key", "val") signature,
143
+ // keys will be converted to camelCase.
144
+ // Since there is no way to tell _how_ a key was added, remove
145
+ // both plain key and camelCase key. #12786
146
+ // This will only penalize the array argument path.
147
+ name = key.concat( key.map( jQuery.camelCase ) );
148
+ } else {
149
+ camel = jQuery.camelCase( key );
150
+ // Try the string as a key before any manipulation
151
+ if ( key in cache ) {
152
+ name = [ key, camel ];
153
+ } else {
154
+ // If a key with the spaces exists, use it.
155
+ // Otherwise, create an array by matching non-whitespace
156
+ name = camel;
157
+ name = name in cache ?
158
+ [ name ] : ( name.match( rnotwhite ) || [] );
159
+ }
160
+ }
161
+
162
+ i = name.length;
163
+ while ( i-- ) {
164
+ delete cache[ name[ i ] ];
165
+ }
166
+ }
167
+ },
168
+ hasData: function( owner ) {
169
+ return !jQuery.isEmptyObject(
170
+ this.cache[ owner[ this.expando ] ] || {}
171
+ );
172
+ },
173
+ discard: function( owner ) {
174
+ if ( owner[ this.expando ] ) {
175
+ delete this.cache[ owner[ this.expando ] ];
176
+ }
177
+ }
178
+ };
179
+
180
+ return Data;
181
+ });
@@ -0,0 +1,20 @@
1
+ define([
2
+ "../core"
3
+ ], function( jQuery ) {
4
+
5
+ /**
6
+ * Determines whether an object can have data
7
+ */
8
+ jQuery.acceptData = function( owner ) {
9
+ // Accepts only:
10
+ // - Node
11
+ // - Node.ELEMENT_NODE
12
+ // - Node.DOCUMENT_NODE
13
+ // - Object
14
+ // - Any
15
+ /* jshint -W018 */
16
+ return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
17
+ };
18
+
19
+ return jQuery.acceptData;
20
+ });
@@ -0,0 +1,5 @@
1
+ define([
2
+ "../Data"
3
+ ], function( Data ) {
4
+ return new Data();
5
+ });
@@ -0,0 +1,5 @@
1
+ define([
2
+ "../Data"
3
+ ], function( Data ) {
4
+ return new Data();
5
+ });
@@ -0,0 +1,149 @@
1
+ define([
2
+ "./core",
3
+ "./var/slice",
4
+ "./callbacks"
5
+ ], function( jQuery, slice ) {
6
+
7
+ jQuery.extend({
8
+
9
+ Deferred: function( func ) {
10
+ var tuples = [
11
+ // action, add listener, listener list, final state
12
+ [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
13
+ [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
14
+ [ "notify", "progress", jQuery.Callbacks("memory") ]
15
+ ],
16
+ state = "pending",
17
+ promise = {
18
+ state: function() {
19
+ return state;
20
+ },
21
+ always: function() {
22
+ deferred.done( arguments ).fail( arguments );
23
+ return this;
24
+ },
25
+ then: function( /* fnDone, fnFail, fnProgress */ ) {
26
+ var fns = arguments;
27
+ return jQuery.Deferred(function( newDefer ) {
28
+ jQuery.each( tuples, function( i, tuple ) {
29
+ var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
30
+ // deferred[ done | fail | progress ] for forwarding actions to newDefer
31
+ deferred[ tuple[1] ](function() {
32
+ var returned = fn && fn.apply( this, arguments );
33
+ if ( returned && jQuery.isFunction( returned.promise ) ) {
34
+ returned.promise()
35
+ .done( newDefer.resolve )
36
+ .fail( newDefer.reject )
37
+ .progress( newDefer.notify );
38
+ } else {
39
+ newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );
40
+ }
41
+ });
42
+ });
43
+ fns = null;
44
+ }).promise();
45
+ },
46
+ // Get a promise for this deferred
47
+ // If obj is provided, the promise aspect is added to the object
48
+ promise: function( obj ) {
49
+ return obj != null ? jQuery.extend( obj, promise ) : promise;
50
+ }
51
+ },
52
+ deferred = {};
53
+
54
+ // Keep pipe for back-compat
55
+ promise.pipe = promise.then;
56
+
57
+ // Add list-specific methods
58
+ jQuery.each( tuples, function( i, tuple ) {
59
+ var list = tuple[ 2 ],
60
+ stateString = tuple[ 3 ];
61
+
62
+ // promise[ done | fail | progress ] = list.add
63
+ promise[ tuple[1] ] = list.add;
64
+
65
+ // Handle state
66
+ if ( stateString ) {
67
+ list.add(function() {
68
+ // state = [ resolved | rejected ]
69
+ state = stateString;
70
+
71
+ // [ reject_list | resolve_list ].disable; progress_list.lock
72
+ }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
73
+ }
74
+
75
+ // deferred[ resolve | reject | notify ]
76
+ deferred[ tuple[0] ] = function() {
77
+ deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments );
78
+ return this;
79
+ };
80
+ deferred[ tuple[0] + "With" ] = list.fireWith;
81
+ });
82
+
83
+ // Make the deferred a promise
84
+ promise.promise( deferred );
85
+
86
+ // Call given func if any
87
+ if ( func ) {
88
+ func.call( deferred, deferred );
89
+ }
90
+
91
+ // All done!
92
+ return deferred;
93
+ },
94
+
95
+ // Deferred helper
96
+ when: function( subordinate /* , ..., subordinateN */ ) {
97
+ var i = 0,
98
+ resolveValues = slice.call( arguments ),
99
+ length = resolveValues.length,
100
+
101
+ // the count of uncompleted subordinates
102
+ remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
103
+
104
+ // the master Deferred. If resolveValues consist of only a single Deferred, just use that.
105
+ deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
106
+
107
+ // Update function for both resolve and progress values
108
+ updateFunc = function( i, contexts, values ) {
109
+ return function( value ) {
110
+ contexts[ i ] = this;
111
+ values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
112
+ if ( values === progressValues ) {
113
+ deferred.notifyWith( contexts, values );
114
+ } else if ( !( --remaining ) ) {
115
+ deferred.resolveWith( contexts, values );
116
+ }
117
+ };
118
+ },
119
+
120
+ progressValues, progressContexts, resolveContexts;
121
+
122
+ // add listeners to Deferred subordinates; treat others as resolved
123
+ if ( length > 1 ) {
124
+ progressValues = new Array( length );
125
+ progressContexts = new Array( length );
126
+ resolveContexts = new Array( length );
127
+ for ( ; i < length; i++ ) {
128
+ if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
129
+ resolveValues[ i ].promise()
130
+ .done( updateFunc( i, resolveContexts, resolveValues ) )
131
+ .fail( deferred.reject )
132
+ .progress( updateFunc( i, progressContexts, progressValues ) );
133
+ } else {
134
+ --remaining;
135
+ }
136
+ }
137
+ }
138
+
139
+ // if we're not waiting on anything, resolve the master
140
+ if ( !remaining ) {
141
+ deferred.resolveWith( resolveContexts, resolveValues );
142
+ }
143
+
144
+ return deferred.promise();
145
+ }
146
+ });
147
+
148
+ return jQuery;
149
+ });
@@ -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],
30
+ // whichever is greatest
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,649 @@
1
+ define([
2
+ "./core",
3
+ "./var/pnum",
4
+ "./css/var/cssExpand",
5
+ "./css/var/isHidden",
6
+ "./css/defaultDisplay",
7
+ "./data/var/data_priv",
8
+
9
+ "./core/init",
10
+ "./effects/Tween",
11
+ "./queue",
12
+ "./css",
13
+ "./deferred",
14
+ "./traversing"
15
+ ], function( jQuery, pnum, cssExpand, isHidden, defaultDisplay, data_priv ) {
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
+ i = 0,
86
+ attrs = { height: type };
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, checkDisplay,
120
+ anim = this,
121
+ orig = {},
122
+ style = elem.style,
123
+ hidden = elem.nodeType && isHidden( elem ),
124
+ dataShow = data_priv.get( 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 IE9-10 do 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
+
164
+ // Test default display if display is currently "none"
165
+ checkDisplay = display === "none" ?
166
+ data_priv.get( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display;
167
+
168
+ if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) {
169
+ style.display = "inline-block";
170
+ }
171
+ }
172
+
173
+ if ( opts.overflow ) {
174
+ style.overflow = "hidden";
175
+ anim.always(function() {
176
+ style.overflow = opts.overflow[ 0 ];
177
+ style.overflowX = opts.overflow[ 1 ];
178
+ style.overflowY = opts.overflow[ 2 ];
179
+ });
180
+ }
181
+
182
+ // show/hide pass
183
+ for ( prop in props ) {
184
+ value = props[ prop ];
185
+ if ( rfxtypes.exec( value ) ) {
186
+ delete props[ prop ];
187
+ toggle = toggle || value === "toggle";
188
+ if ( value === ( hidden ? "hide" : "show" ) ) {
189
+
190
+ // 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
191
+ if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
192
+ hidden = true;
193
+ } else {
194
+ continue;
195
+ }
196
+ }
197
+ orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
198
+
199
+ // Any non-fx value stops us from restoring the original display value
200
+ } else {
201
+ display = undefined;
202
+ }
203
+ }
204
+
205
+ if ( !jQuery.isEmptyObject( orig ) ) {
206
+ if ( dataShow ) {
207
+ if ( "hidden" in dataShow ) {
208
+ hidden = dataShow.hidden;
209
+ }
210
+ } else {
211
+ dataShow = data_priv.access( elem, "fxshow", {} );
212
+ }
213
+
214
+ // store state if its toggle - enables .stop().toggle() to "reverse"
215
+ if ( toggle ) {
216
+ dataShow.hidden = !hidden;
217
+ }
218
+ if ( hidden ) {
219
+ jQuery( elem ).show();
220
+ } else {
221
+ anim.done(function() {
222
+ jQuery( elem ).hide();
223
+ });
224
+ }
225
+ anim.done(function() {
226
+ var prop;
227
+
228
+ data_priv.remove( elem, "fxshow" );
229
+ for ( prop in orig ) {
230
+ jQuery.style( elem, prop, orig[ prop ] );
231
+ }
232
+ });
233
+ for ( prop in orig ) {
234
+ tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
235
+
236
+ if ( !( prop in dataShow ) ) {
237
+ dataShow[ prop ] = tween.start;
238
+ if ( hidden ) {
239
+ tween.end = tween.start;
240
+ tween.start = prop === "width" || prop === "height" ? 1 : 0;
241
+ }
242
+ }
243
+ }
244
+
245
+ // If this is a noop like .hide().hide(), restore an overwritten display value
246
+ } else if ( (display === "none" ? defaultDisplay( elem.nodeName ) : display) === "inline" ) {
247
+ style.display = display;
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
+
394
+ tweener: function( props, callback ) {
395
+ if ( jQuery.isFunction( props ) ) {
396
+ callback = props;
397
+ props = [ "*" ];
398
+ } else {
399
+ props = props.split(" ");
400
+ }
401
+
402
+ var prop,
403
+ index = 0,
404
+ length = props.length;
405
+
406
+ for ( ; index < length ; index++ ) {
407
+ prop = props[ index ];
408
+ tweeners[ prop ] = tweeners[ prop ] || [];
409
+ tweeners[ prop ].unshift( callback );
410
+ }
411
+ },
412
+
413
+ prefilter: function( callback, prepend ) {
414
+ if ( prepend ) {
415
+ animationPrefilters.unshift( callback );
416
+ } else {
417
+ animationPrefilters.push( callback );
418
+ }
419
+ }
420
+ });
421
+
422
+ jQuery.speed = function( speed, easing, fn ) {
423
+ var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
424
+ complete: fn || !fn && easing ||
425
+ jQuery.isFunction( speed ) && speed,
426
+ duration: speed,
427
+ easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
428
+ };
429
+
430
+ opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
431
+ opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
432
+
433
+ // normalize opt.queue - true/undefined/null -> "fx"
434
+ if ( opt.queue == null || opt.queue === true ) {
435
+ opt.queue = "fx";
436
+ }
437
+
438
+ // Queueing
439
+ opt.old = opt.complete;
440
+
441
+ opt.complete = function() {
442
+ if ( jQuery.isFunction( opt.old ) ) {
443
+ opt.old.call( this );
444
+ }
445
+
446
+ if ( opt.queue ) {
447
+ jQuery.dequeue( this, opt.queue );
448
+ }
449
+ };
450
+
451
+ return opt;
452
+ };
453
+
454
+ jQuery.fn.extend({
455
+ fadeTo: function( speed, to, easing, callback ) {
456
+
457
+ // show any hidden elements after setting opacity to 0
458
+ return this.filter( isHidden ).css( "opacity", 0 ).show()
459
+
460
+ // animate to the value specified
461
+ .end().animate({ opacity: to }, speed, easing, callback );
462
+ },
463
+ animate: function( prop, speed, easing, callback ) {
464
+ var empty = jQuery.isEmptyObject( prop ),
465
+ optall = jQuery.speed( speed, easing, callback ),
466
+ doAnimation = function() {
467
+ // Operate on a copy of prop so per-property easing won't be lost
468
+ var anim = Animation( this, jQuery.extend( {}, prop ), optall );
469
+
470
+ // Empty animations, or finishing resolves immediately
471
+ if ( empty || data_priv.get( this, "finish" ) ) {
472
+ anim.stop( true );
473
+ }
474
+ };
475
+ doAnimation.finish = doAnimation;
476
+
477
+ return empty || optall.queue === false ?
478
+ this.each( doAnimation ) :
479
+ this.queue( optall.queue, doAnimation );
480
+ },
481
+ stop: function( type, clearQueue, gotoEnd ) {
482
+ var stopQueue = function( hooks ) {
483
+ var stop = hooks.stop;
484
+ delete hooks.stop;
485
+ stop( gotoEnd );
486
+ };
487
+
488
+ if ( typeof type !== "string" ) {
489
+ gotoEnd = clearQueue;
490
+ clearQueue = type;
491
+ type = undefined;
492
+ }
493
+ if ( clearQueue && type !== false ) {
494
+ this.queue( type || "fx", [] );
495
+ }
496
+
497
+ return this.each(function() {
498
+ var dequeue = true,
499
+ index = type != null && type + "queueHooks",
500
+ timers = jQuery.timers,
501
+ data = data_priv.get( this );
502
+
503
+ if ( index ) {
504
+ if ( data[ index ] && data[ index ].stop ) {
505
+ stopQueue( data[ index ] );
506
+ }
507
+ } else {
508
+ for ( index in data ) {
509
+ if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
510
+ stopQueue( data[ index ] );
511
+ }
512
+ }
513
+ }
514
+
515
+ for ( index = timers.length; index--; ) {
516
+ if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
517
+ timers[ index ].anim.stop( gotoEnd );
518
+ dequeue = false;
519
+ timers.splice( index, 1 );
520
+ }
521
+ }
522
+
523
+ // start the next in the queue if the last step wasn't forced
524
+ // timers currently will call their complete callbacks, which will dequeue
525
+ // but only if they were gotoEnd
526
+ if ( dequeue || !gotoEnd ) {
527
+ jQuery.dequeue( this, type );
528
+ }
529
+ });
530
+ },
531
+ finish: function( type ) {
532
+ if ( type !== false ) {
533
+ type = type || "fx";
534
+ }
535
+ return this.each(function() {
536
+ var index,
537
+ data = data_priv.get( this ),
538
+ queue = data[ type + "queue" ],
539
+ hooks = data[ type + "queueHooks" ],
540
+ timers = jQuery.timers,
541
+ length = queue ? queue.length : 0;
542
+
543
+ // enable finishing flag on private data
544
+ data.finish = true;
545
+
546
+ // empty the queue first
547
+ jQuery.queue( this, type, [] );
548
+
549
+ if ( hooks && hooks.stop ) {
550
+ hooks.stop.call( this, true );
551
+ }
552
+
553
+ // look for any active animations, and finish them
554
+ for ( index = timers.length; index--; ) {
555
+ if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
556
+ timers[ index ].anim.stop( true );
557
+ timers.splice( index, 1 );
558
+ }
559
+ }
560
+
561
+ // look for any animations in the old queue and finish them
562
+ for ( index = 0; index < length; index++ ) {
563
+ if ( queue[ index ] && queue[ index ].finish ) {
564
+ queue[ index ].finish.call( this );
565
+ }
566
+ }
567
+
568
+ // turn off finishing flag
569
+ delete data.finish;
570
+ });
571
+ }
572
+ });
573
+
574
+ jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
575
+ var cssFn = jQuery.fn[ name ];
576
+ jQuery.fn[ name ] = function( speed, easing, callback ) {
577
+ return speed == null || typeof speed === "boolean" ?
578
+ cssFn.apply( this, arguments ) :
579
+ this.animate( genFx( name, true ), speed, easing, callback );
580
+ };
581
+ });
582
+
583
+ // Generate shortcuts for custom animations
584
+ jQuery.each({
585
+ slideDown: genFx("show"),
586
+ slideUp: genFx("hide"),
587
+ slideToggle: genFx("toggle"),
588
+ fadeIn: { opacity: "show" },
589
+ fadeOut: { opacity: "hide" },
590
+ fadeToggle: { opacity: "toggle" }
591
+ }, function( name, props ) {
592
+ jQuery.fn[ name ] = function( speed, easing, callback ) {
593
+ return this.animate( props, speed, easing, callback );
594
+ };
595
+ });
596
+
597
+ jQuery.timers = [];
598
+ jQuery.fx.tick = function() {
599
+ var timer,
600
+ i = 0,
601
+ timers = jQuery.timers;
602
+
603
+ fxNow = jQuery.now();
604
+
605
+ for ( ; i < timers.length; i++ ) {
606
+ timer = timers[ i ];
607
+ // Checks the timer has not already been removed
608
+ if ( !timer() && timers[ i ] === timer ) {
609
+ timers.splice( i--, 1 );
610
+ }
611
+ }
612
+
613
+ if ( !timers.length ) {
614
+ jQuery.fx.stop();
615
+ }
616
+ fxNow = undefined;
617
+ };
618
+
619
+ jQuery.fx.timer = function( timer ) {
620
+ jQuery.timers.push( timer );
621
+ if ( timer() ) {
622
+ jQuery.fx.start();
623
+ } else {
624
+ jQuery.timers.pop();
625
+ }
626
+ };
627
+
628
+ jQuery.fx.interval = 13;
629
+
630
+ jQuery.fx.start = function() {
631
+ if ( !timerId ) {
632
+ timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
633
+ }
634
+ };
635
+
636
+ jQuery.fx.stop = function() {
637
+ clearInterval( timerId );
638
+ timerId = null;
639
+ };
640
+
641
+ jQuery.fx.speeds = {
642
+ slow: 600,
643
+ fast: 200,
644
+ // Default speed
645
+ _default: 400
646
+ };
647
+
648
+ return jQuery;
649
+ });