logster 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (245) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/Guardfile +8 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +38 -0
  7. data/Rakefile +18 -0
  8. data/assets/javascript/app.js +377 -0
  9. data/assets/javascript/external/ember.js +44267 -0
  10. data/assets/javascript/external/ember.min.js +19 -0
  11. data/assets/javascript/external/handlebars.min.js +28 -0
  12. data/assets/javascript/external/jquery.min.js +5 -0
  13. data/assets/javascript/external/lodash.min.js +56 -0
  14. data/assets/javascript/external/moment.min.js +6 -0
  15. data/assets/javascript/templates/application.handlebars +1 -0
  16. data/assets/javascript/templates/index.handlebars +48 -0
  17. data/assets/javascript/templates/message.handlebars +7 -0
  18. data/assets/stylesheets/app.css +188 -0
  19. data/bower_components/ember/.bower.json +22 -0
  20. data/bower_components/ember/.gitignore +5 -0
  21. data/bower_components/ember/Makefile +9 -0
  22. data/bower_components/ember/README.md +12 -0
  23. data/bower_components/ember/bower.json +11 -0
  24. data/bower_components/ember/component.json +13 -0
  25. data/bower_components/ember/composer.json +27 -0
  26. data/bower_components/ember/ember-template-compiler.js +320 -0
  27. data/bower_components/ember/ember.js +44267 -0
  28. data/bower_components/ember/ember.min.js +19 -0
  29. data/bower_components/ember/ember.prod.js +42649 -0
  30. data/bower_components/ember/package.json +11 -0
  31. data/bower_components/handlebars/.bower.json +16 -0
  32. data/bower_components/handlebars/.gitignore +2 -0
  33. data/bower_components/handlebars/README.md +11 -0
  34. data/bower_components/handlebars/bower.json +6 -0
  35. data/bower_components/handlebars/component.json +9 -0
  36. data/bower_components/handlebars/composer.json +35 -0
  37. data/bower_components/handlebars/handlebars-source.gemspec +21 -0
  38. data/bower_components/handlebars/handlebars.amd.js +2719 -0
  39. data/bower_components/handlebars/handlebars.amd.min.js +28 -0
  40. data/bower_components/handlebars/handlebars.js +2746 -0
  41. data/bower_components/handlebars/handlebars.js.nuspec +17 -0
  42. data/bower_components/handlebars/handlebars.min.js +28 -0
  43. data/bower_components/handlebars/handlebars.runtime.amd.js +515 -0
  44. data/bower_components/handlebars/handlebars.runtime.amd.min.js +27 -0
  45. data/bower_components/handlebars/handlebars.runtime.js +530 -0
  46. data/bower_components/handlebars/handlebars.runtime.min.js +27 -0
  47. data/bower_components/handlebars/lib/handlebars/source.rb +11 -0
  48. data/bower_components/jquery/.bower.json +37 -0
  49. data/bower_components/jquery/MIT-LICENSE.txt +21 -0
  50. data/bower_components/jquery/bower.json +27 -0
  51. data/bower_components/jquery/dist/jquery.js +9111 -0
  52. data/bower_components/jquery/dist/jquery.min.js +5 -0
  53. data/bower_components/jquery/dist/jquery.min.map +1 -0
  54. data/bower_components/jquery/src/ajax.js +806 -0
  55. data/bower_components/jquery/src/ajax/jsonp.js +89 -0
  56. data/bower_components/jquery/src/ajax/load.js +75 -0
  57. data/bower_components/jquery/src/ajax/parseJSON.js +13 -0
  58. data/bower_components/jquery/src/ajax/parseXML.js +28 -0
  59. data/bower_components/jquery/src/ajax/script.js +64 -0
  60. data/bower_components/jquery/src/ajax/var/nonce.js +5 -0
  61. data/bower_components/jquery/src/ajax/var/rquery.js +3 -0
  62. data/bower_components/jquery/src/ajax/xhr.js +130 -0
  63. data/bower_components/jquery/src/attributes.js +11 -0
  64. data/bower_components/jquery/src/attributes/attr.js +143 -0
  65. data/bower_components/jquery/src/attributes/classes.js +158 -0
  66. data/bower_components/jquery/src/attributes/prop.js +96 -0
  67. data/bower_components/jquery/src/attributes/support.js +35 -0
  68. data/bower_components/jquery/src/attributes/val.js +153 -0
  69. data/bower_components/jquery/src/callbacks.js +205 -0
  70. data/bower_components/jquery/src/core.js +500 -0
  71. data/bower_components/jquery/src/core/access.js +60 -0
  72. data/bower_components/jquery/src/core/init.js +123 -0
  73. data/bower_components/jquery/src/core/parseHTML.js +39 -0
  74. data/bower_components/jquery/src/core/ready.js +96 -0
  75. data/bower_components/jquery/src/core/var/rsingleTag.js +4 -0
  76. data/bower_components/jquery/src/css.js +455 -0
  77. data/bower_components/jquery/src/css/addGetHookIf.js +24 -0
  78. data/bower_components/jquery/src/css/curCSS.js +57 -0
  79. data/bower_components/jquery/src/css/defaultDisplay.js +69 -0
  80. data/bower_components/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  81. data/bower_components/jquery/src/css/support.js +83 -0
  82. data/bower_components/jquery/src/css/swap.js +28 -0
  83. data/bower_components/jquery/src/css/var/cssExpand.js +3 -0
  84. data/bower_components/jquery/src/css/var/getStyles.js +5 -0
  85. data/bower_components/jquery/src/css/var/isHidden.js +13 -0
  86. data/bower_components/jquery/src/css/var/rmargin.js +3 -0
  87. data/bower_components/jquery/src/css/var/rnumnonpx.js +5 -0
  88. data/bower_components/jquery/src/data.js +175 -0
  89. data/bower_components/jquery/src/data/Data.js +181 -0
  90. data/bower_components/jquery/src/data/accepts.js +20 -0
  91. data/bower_components/jquery/src/data/var/data_priv.js +5 -0
  92. data/bower_components/jquery/src/data/var/data_user.js +5 -0
  93. data/bower_components/jquery/src/deferred.js +149 -0
  94. data/bower_components/jquery/src/deprecated.js +13 -0
  95. data/bower_components/jquery/src/dimensions.js +50 -0
  96. data/bower_components/jquery/src/effects.js +642 -0
  97. data/bower_components/jquery/src/effects/Tween.js +114 -0
  98. data/bower_components/jquery/src/effects/animatedSelector.js +13 -0
  99. data/bower_components/jquery/src/event.js +859 -0
  100. data/bower_components/jquery/src/event/alias.js +39 -0
  101. data/bower_components/jquery/src/event/support.js +9 -0
  102. data/bower_components/jquery/src/exports/amd.js +18 -0
  103. data/bower_components/jquery/src/exports/global.js +32 -0
  104. data/bower_components/jquery/src/intro.js +44 -0
  105. data/bower_components/jquery/src/jquery.js +36 -0
  106. data/bower_components/jquery/src/manipulation.js +583 -0
  107. data/bower_components/jquery/src/manipulation/_evalUrl.js +18 -0
  108. data/bower_components/jquery/src/manipulation/support.js +24 -0
  109. data/bower_components/jquery/src/manipulation/var/rcheckableType.js +3 -0
  110. data/bower_components/jquery/src/offset.js +204 -0
  111. data/bower_components/jquery/src/outro.js +1 -0
  112. data/bower_components/jquery/src/queue.js +142 -0
  113. data/bower_components/jquery/src/queue/delay.js +22 -0
  114. data/bower_components/jquery/src/selector-native.js +171 -0
  115. data/bower_components/jquery/src/selector-sizzle.js +14 -0
  116. data/bower_components/jquery/src/selector.js +1 -0
  117. data/bower_components/jquery/src/serialize.js +111 -0
  118. data/bower_components/jquery/src/sizzle/dist/sizzle.js +2015 -0
  119. data/bower_components/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  120. data/bower_components/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  121. data/bower_components/jquery/src/traversing.js +200 -0
  122. data/bower_components/jquery/src/traversing/findFilter.js +100 -0
  123. data/bower_components/jquery/src/traversing/var/rneedsContext.js +6 -0
  124. data/bower_components/jquery/src/var/arr.js +3 -0
  125. data/bower_components/jquery/src/var/class2type.js +4 -0
  126. data/bower_components/jquery/src/var/concat.js +5 -0
  127. data/bower_components/jquery/src/var/hasOwn.js +5 -0
  128. data/bower_components/jquery/src/var/indexOf.js +5 -0
  129. data/bower_components/jquery/src/var/pnum.js +3 -0
  130. data/bower_components/jquery/src/var/push.js +5 -0
  131. data/bower_components/jquery/src/var/rnotwhite.js +3 -0
  132. data/bower_components/jquery/src/var/slice.js +5 -0
  133. data/bower_components/jquery/src/var/strundefined.js +3 -0
  134. data/bower_components/jquery/src/var/support.js +4 -0
  135. data/bower_components/jquery/src/var/toString.js +5 -0
  136. data/bower_components/jquery/src/var/trim.js +3 -0
  137. data/bower_components/jquery/src/wrap.js +78 -0
  138. data/bower_components/lodash/.bower.json +34 -0
  139. data/bower_components/lodash/LICENSE.txt +22 -0
  140. data/bower_components/lodash/bower.json +23 -0
  141. data/bower_components/lodash/dist/lodash.compat.js +7157 -0
  142. data/bower_components/lodash/dist/lodash.compat.min.js +61 -0
  143. data/bower_components/lodash/dist/lodash.js +6785 -0
  144. data/bower_components/lodash/dist/lodash.min.js +56 -0
  145. data/bower_components/lodash/dist/lodash.underscore.js +4979 -0
  146. data/bower_components/lodash/dist/lodash.underscore.min.js +39 -0
  147. data/bower_components/moment/.bower.json +31 -0
  148. data/bower_components/moment/LICENSE +22 -0
  149. data/bower_components/moment/bower.json +20 -0
  150. data/bower_components/moment/lang/ar-ma.js +56 -0
  151. data/bower_components/moment/lang/ar.js +56 -0
  152. data/bower_components/moment/lang/bg.js +86 -0
  153. data/bower_components/moment/lang/br.js +107 -0
  154. data/bower_components/moment/lang/bs.js +139 -0
  155. data/bower_components/moment/lang/ca.js +66 -0
  156. data/bower_components/moment/lang/cs.js +155 -0
  157. data/bower_components/moment/lang/cv.js +59 -0
  158. data/bower_components/moment/lang/cy.js +77 -0
  159. data/bower_components/moment/lang/da.js +56 -0
  160. data/bower_components/moment/lang/de.js +71 -0
  161. data/bower_components/moment/lang/el.js +79 -0
  162. data/bower_components/moment/lang/en-au.js +62 -0
  163. data/bower_components/moment/lang/en-ca.js +59 -0
  164. data/bower_components/moment/lang/en-gb.js +63 -0
  165. data/bower_components/moment/lang/eo.js +65 -0
  166. data/bower_components/moment/lang/es.js +75 -0
  167. data/bower_components/moment/lang/et.js +76 -0
  168. data/bower_components/moment/lang/eu.js +60 -0
  169. data/bower_components/moment/lang/fa.js +97 -0
  170. data/bower_components/moment/lang/fi.js +103 -0
  171. data/bower_components/moment/lang/fo.js +56 -0
  172. data/bower_components/moment/lang/fr-ca.js +54 -0
  173. data/bower_components/moment/lang/fr.js +58 -0
  174. data/bower_components/moment/lang/gl.js +71 -0
  175. data/bower_components/moment/lang/he.js +77 -0
  176. data/bower_components/moment/lang/hi.js +105 -0
  177. data/bower_components/moment/lang/hr.js +140 -0
  178. data/bower_components/moment/lang/hu.js +105 -0
  179. data/bower_components/moment/lang/hy-am.js +113 -0
  180. data/bower_components/moment/lang/id.js +67 -0
  181. data/bower_components/moment/lang/is.js +124 -0
  182. data/bower_components/moment/lang/it.js +59 -0
  183. data/bower_components/moment/lang/ja.js +58 -0
  184. data/bower_components/moment/lang/ka.js +108 -0
  185. data/bower_components/moment/lang/km.js +55 -0
  186. data/bower_components/moment/lang/ko.js +63 -0
  187. data/bower_components/moment/lang/lb.js +160 -0
  188. data/bower_components/moment/lang/lt.js +118 -0
  189. data/bower_components/moment/lang/lv.js +77 -0
  190. data/bower_components/moment/lang/mk.js +86 -0
  191. data/bower_components/moment/lang/ml.js +64 -0
  192. data/bower_components/moment/lang/mr.js +104 -0
  193. data/bower_components/moment/lang/ms-my.js +66 -0
  194. data/bower_components/moment/lang/nb.js +57 -0
  195. data/bower_components/moment/lang/ne.js +105 -0
  196. data/bower_components/moment/lang/nl.js +67 -0
  197. data/bower_components/moment/lang/nn.js +56 -0
  198. data/bower_components/moment/lang/pl.js +98 -0
  199. data/bower_components/moment/lang/pt-br.js +56 -0
  200. data/bower_components/moment/lang/pt.js +60 -0
  201. data/bower_components/moment/lang/ro.js +72 -0
  202. data/bower_components/moment/lang/ru.js +163 -0
  203. data/bower_components/moment/lang/sk.js +156 -0
  204. data/bower_components/moment/lang/sl.js +144 -0
  205. data/bower_components/moment/lang/sq.js +61 -0
  206. data/bower_components/moment/lang/sr-cyr.js +106 -0
  207. data/bower_components/moment/lang/sr.js +106 -0
  208. data/bower_components/moment/lang/sv.js +63 -0
  209. data/bower_components/moment/lang/ta.js +112 -0
  210. data/bower_components/moment/lang/th.js +58 -0
  211. data/bower_components/moment/lang/tl-ph.js +58 -0
  212. data/bower_components/moment/lang/tr.js +93 -0
  213. data/bower_components/moment/lang/tzm-la.js +55 -0
  214. data/bower_components/moment/lang/tzm.js +55 -0
  215. data/bower_components/moment/lang/uk.js +157 -0
  216. data/bower_components/moment/lang/uz.js +55 -0
  217. data/bower_components/moment/lang/vi.js +62 -0
  218. data/bower_components/moment/lang/zh-cn.js +108 -0
  219. data/bower_components/moment/lang/zh-tw.js +84 -0
  220. data/bower_components/moment/min/langs.js +5991 -0
  221. data/bower_components/moment/min/langs.min.js +3 -0
  222. data/bower_components/moment/min/moment-with-langs.js +7993 -0
  223. data/bower_components/moment/min/moment-with-langs.min.js +9 -0
  224. data/bower_components/moment/min/moment.min.js +6 -0
  225. data/bower_components/moment/moment.js +2489 -0
  226. data/bower_components/moment/readme.md +368 -0
  227. data/lib/logster.rb +9 -0
  228. data/lib/logster/logger.rb +31 -0
  229. data/lib/logster/message.rb +42 -0
  230. data/lib/logster/middleware/reporter.rb +13 -0
  231. data/lib/logster/middleware/viewer.rb +122 -0
  232. data/lib/logster/rails/railtie.rb +39 -0
  233. data/lib/logster/redis_store.rb +124 -0
  234. data/lib/logster/version.rb +3 -0
  235. data/logster.gemspec +30 -0
  236. data/test/logster/middleware/test_viewer.rb +34 -0
  237. data/test/logster/test_redis_store.rb +112 -0
  238. data/test/test_helper.rb +6 -0
  239. data/website/Gemfile +6 -0
  240. data/website/config.ru +2 -0
  241. data/website/data/data.json +1 -0
  242. data/website/docker_container/logster.yml +95 -0
  243. data/website/sample.rb +85 -0
  244. data/website/scripts/persist_logs.rb +13 -0
  245. metadata +375 -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,642 @@
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,
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
+ // Get default display if display is currently "none"
164
+ if ( display === "none" ) {
165
+ display = defaultDisplay( elem.nodeName );
166
+ }
167
+ if ( display === "inline" &&
168
+ jQuery.css( elem, "float" ) === "none" ) {
169
+
170
+ style.display = "inline-block";
171
+ }
172
+ }
173
+
174
+ if ( opts.overflow ) {
175
+ style.overflow = "hidden";
176
+ anim.always(function() {
177
+ style.overflow = opts.overflow[ 0 ];
178
+ style.overflowX = opts.overflow[ 1 ];
179
+ style.overflowY = opts.overflow[ 2 ];
180
+ });
181
+ }
182
+
183
+ // show/hide pass
184
+ for ( prop in props ) {
185
+ value = props[ prop ];
186
+ if ( rfxtypes.exec( value ) ) {
187
+ delete props[ prop ];
188
+ toggle = toggle || value === "toggle";
189
+ if ( value === ( hidden ? "hide" : "show" ) ) {
190
+
191
+ // 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
192
+ if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
193
+ hidden = true;
194
+ } else {
195
+ continue;
196
+ }
197
+ }
198
+ orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
199
+ }
200
+ }
201
+
202
+ if ( !jQuery.isEmptyObject( orig ) ) {
203
+ if ( dataShow ) {
204
+ if ( "hidden" in dataShow ) {
205
+ hidden = dataShow.hidden;
206
+ }
207
+ } else {
208
+ dataShow = data_priv.access( elem, "fxshow", {} );
209
+ }
210
+
211
+ // store state if its toggle - enables .stop().toggle() to "reverse"
212
+ if ( toggle ) {
213
+ dataShow.hidden = !hidden;
214
+ }
215
+ if ( hidden ) {
216
+ jQuery( elem ).show();
217
+ } else {
218
+ anim.done(function() {
219
+ jQuery( elem ).hide();
220
+ });
221
+ }
222
+ anim.done(function() {
223
+ var prop;
224
+
225
+ data_priv.remove( elem, "fxshow" );
226
+ for ( prop in orig ) {
227
+ jQuery.style( elem, prop, orig[ prop ] );
228
+ }
229
+ });
230
+ for ( prop in orig ) {
231
+ tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
232
+
233
+ if ( !( prop in dataShow ) ) {
234
+ dataShow[ prop ] = tween.start;
235
+ if ( hidden ) {
236
+ tween.end = tween.start;
237
+ tween.start = prop === "width" || prop === "height" ? 1 : 0;
238
+ }
239
+ }
240
+ }
241
+ }
242
+ }
243
+
244
+ function propFilter( props, specialEasing ) {
245
+ var index, name, easing, value, hooks;
246
+
247
+ // camelCase, specialEasing and expand cssHook pass
248
+ for ( index in props ) {
249
+ name = jQuery.camelCase( index );
250
+ easing = specialEasing[ name ];
251
+ value = props[ index ];
252
+ if ( jQuery.isArray( value ) ) {
253
+ easing = value[ 1 ];
254
+ value = props[ index ] = value[ 0 ];
255
+ }
256
+
257
+ if ( index !== name ) {
258
+ props[ name ] = value;
259
+ delete props[ index ];
260
+ }
261
+
262
+ hooks = jQuery.cssHooks[ name ];
263
+ if ( hooks && "expand" in hooks ) {
264
+ value = hooks.expand( value );
265
+ delete props[ name ];
266
+
267
+ // not quite $.extend, this wont overwrite keys already present.
268
+ // also - reusing 'index' from above because we have the correct "name"
269
+ for ( index in value ) {
270
+ if ( !( index in props ) ) {
271
+ props[ index ] = value[ index ];
272
+ specialEasing[ index ] = easing;
273
+ }
274
+ }
275
+ } else {
276
+ specialEasing[ name ] = easing;
277
+ }
278
+ }
279
+ }
280
+
281
+ function Animation( elem, properties, options ) {
282
+ var result,
283
+ stopped,
284
+ index = 0,
285
+ length = animationPrefilters.length,
286
+ deferred = jQuery.Deferred().always( function() {
287
+ // don't match elem in the :animated selector
288
+ delete tick.elem;
289
+ }),
290
+ tick = function() {
291
+ if ( stopped ) {
292
+ return false;
293
+ }
294
+ var currentTime = fxNow || createFxNow(),
295
+ remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
296
+ // archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)
297
+ temp = remaining / animation.duration || 0,
298
+ percent = 1 - temp,
299
+ index = 0,
300
+ length = animation.tweens.length;
301
+
302
+ for ( ; index < length ; index++ ) {
303
+ animation.tweens[ index ].run( percent );
304
+ }
305
+
306
+ deferred.notifyWith( elem, [ animation, percent, remaining ]);
307
+
308
+ if ( percent < 1 && length ) {
309
+ return remaining;
310
+ } else {
311
+ deferred.resolveWith( elem, [ animation ] );
312
+ return false;
313
+ }
314
+ },
315
+ animation = deferred.promise({
316
+ elem: elem,
317
+ props: jQuery.extend( {}, properties ),
318
+ opts: jQuery.extend( true, { specialEasing: {} }, options ),
319
+ originalProperties: properties,
320
+ originalOptions: options,
321
+ startTime: fxNow || createFxNow(),
322
+ duration: options.duration,
323
+ tweens: [],
324
+ createTween: function( prop, end ) {
325
+ var tween = jQuery.Tween( elem, animation.opts, prop, end,
326
+ animation.opts.specialEasing[ prop ] || animation.opts.easing );
327
+ animation.tweens.push( tween );
328
+ return tween;
329
+ },
330
+ stop: function( gotoEnd ) {
331
+ var index = 0,
332
+ // if we are going to the end, we want to run all the tweens
333
+ // otherwise we skip this part
334
+ length = gotoEnd ? animation.tweens.length : 0;
335
+ if ( stopped ) {
336
+ return this;
337
+ }
338
+ stopped = true;
339
+ for ( ; index < length ; index++ ) {
340
+ animation.tweens[ index ].run( 1 );
341
+ }
342
+
343
+ // resolve when we played the last frame
344
+ // otherwise, reject
345
+ if ( gotoEnd ) {
346
+ deferred.resolveWith( elem, [ animation, gotoEnd ] );
347
+ } else {
348
+ deferred.rejectWith( elem, [ animation, gotoEnd ] );
349
+ }
350
+ return this;
351
+ }
352
+ }),
353
+ props = animation.props;
354
+
355
+ propFilter( props, animation.opts.specialEasing );
356
+
357
+ for ( ; index < length ; index++ ) {
358
+ result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
359
+ if ( result ) {
360
+ return result;
361
+ }
362
+ }
363
+
364
+ jQuery.map( props, createTween, animation );
365
+
366
+ if ( jQuery.isFunction( animation.opts.start ) ) {
367
+ animation.opts.start.call( elem, animation );
368
+ }
369
+
370
+ jQuery.fx.timer(
371
+ jQuery.extend( tick, {
372
+ elem: elem,
373
+ anim: animation,
374
+ queue: animation.opts.queue
375
+ })
376
+ );
377
+
378
+ // attach callbacks from options
379
+ return animation.progress( animation.opts.progress )
380
+ .done( animation.opts.done, animation.opts.complete )
381
+ .fail( animation.opts.fail )
382
+ .always( animation.opts.always );
383
+ }
384
+
385
+ jQuery.Animation = jQuery.extend( Animation, {
386
+
387
+ tweener: function( props, callback ) {
388
+ if ( jQuery.isFunction( props ) ) {
389
+ callback = props;
390
+ props = [ "*" ];
391
+ } else {
392
+ props = props.split(" ");
393
+ }
394
+
395
+ var prop,
396
+ index = 0,
397
+ length = props.length;
398
+
399
+ for ( ; index < length ; index++ ) {
400
+ prop = props[ index ];
401
+ tweeners[ prop ] = tweeners[ prop ] || [];
402
+ tweeners[ prop ].unshift( callback );
403
+ }
404
+ },
405
+
406
+ prefilter: function( callback, prepend ) {
407
+ if ( prepend ) {
408
+ animationPrefilters.unshift( callback );
409
+ } else {
410
+ animationPrefilters.push( callback );
411
+ }
412
+ }
413
+ });
414
+
415
+ jQuery.speed = function( speed, easing, fn ) {
416
+ var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
417
+ complete: fn || !fn && easing ||
418
+ jQuery.isFunction( speed ) && speed,
419
+ duration: speed,
420
+ easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
421
+ };
422
+
423
+ opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
424
+ opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
425
+
426
+ // normalize opt.queue - true/undefined/null -> "fx"
427
+ if ( opt.queue == null || opt.queue === true ) {
428
+ opt.queue = "fx";
429
+ }
430
+
431
+ // Queueing
432
+ opt.old = opt.complete;
433
+
434
+ opt.complete = function() {
435
+ if ( jQuery.isFunction( opt.old ) ) {
436
+ opt.old.call( this );
437
+ }
438
+
439
+ if ( opt.queue ) {
440
+ jQuery.dequeue( this, opt.queue );
441
+ }
442
+ };
443
+
444
+ return opt;
445
+ };
446
+
447
+ jQuery.fn.extend({
448
+ fadeTo: function( speed, to, easing, callback ) {
449
+
450
+ // show any hidden elements after setting opacity to 0
451
+ return this.filter( isHidden ).css( "opacity", 0 ).show()
452
+
453
+ // animate to the value specified
454
+ .end().animate({ opacity: to }, speed, easing, callback );
455
+ },
456
+ animate: function( prop, speed, easing, callback ) {
457
+ var empty = jQuery.isEmptyObject( prop ),
458
+ optall = jQuery.speed( speed, easing, callback ),
459
+ doAnimation = function() {
460
+ // Operate on a copy of prop so per-property easing won't be lost
461
+ var anim = Animation( this, jQuery.extend( {}, prop ), optall );
462
+
463
+ // Empty animations, or finishing resolves immediately
464
+ if ( empty || data_priv.get( this, "finish" ) ) {
465
+ anim.stop( true );
466
+ }
467
+ };
468
+ doAnimation.finish = doAnimation;
469
+
470
+ return empty || optall.queue === false ?
471
+ this.each( doAnimation ) :
472
+ this.queue( optall.queue, doAnimation );
473
+ },
474
+ stop: function( type, clearQueue, gotoEnd ) {
475
+ var stopQueue = function( hooks ) {
476
+ var stop = hooks.stop;
477
+ delete hooks.stop;
478
+ stop( gotoEnd );
479
+ };
480
+
481
+ if ( typeof type !== "string" ) {
482
+ gotoEnd = clearQueue;
483
+ clearQueue = type;
484
+ type = undefined;
485
+ }
486
+ if ( clearQueue && type !== false ) {
487
+ this.queue( type || "fx", [] );
488
+ }
489
+
490
+ return this.each(function() {
491
+ var dequeue = true,
492
+ index = type != null && type + "queueHooks",
493
+ timers = jQuery.timers,
494
+ data = data_priv.get( this );
495
+
496
+ if ( index ) {
497
+ if ( data[ index ] && data[ index ].stop ) {
498
+ stopQueue( data[ index ] );
499
+ }
500
+ } else {
501
+ for ( index in data ) {
502
+ if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
503
+ stopQueue( data[ index ] );
504
+ }
505
+ }
506
+ }
507
+
508
+ for ( index = timers.length; index--; ) {
509
+ if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
510
+ timers[ index ].anim.stop( gotoEnd );
511
+ dequeue = false;
512
+ timers.splice( index, 1 );
513
+ }
514
+ }
515
+
516
+ // start the next in the queue if the last step wasn't forced
517
+ // timers currently will call their complete callbacks, which will dequeue
518
+ // but only if they were gotoEnd
519
+ if ( dequeue || !gotoEnd ) {
520
+ jQuery.dequeue( this, type );
521
+ }
522
+ });
523
+ },
524
+ finish: function( type ) {
525
+ if ( type !== false ) {
526
+ type = type || "fx";
527
+ }
528
+ return this.each(function() {
529
+ var index,
530
+ data = data_priv.get( this ),
531
+ queue = data[ type + "queue" ],
532
+ hooks = data[ type + "queueHooks" ],
533
+ timers = jQuery.timers,
534
+ length = queue ? queue.length : 0;
535
+
536
+ // enable finishing flag on private data
537
+ data.finish = true;
538
+
539
+ // empty the queue first
540
+ jQuery.queue( this, type, [] );
541
+
542
+ if ( hooks && hooks.stop ) {
543
+ hooks.stop.call( this, true );
544
+ }
545
+
546
+ // look for any active animations, and finish them
547
+ for ( index = timers.length; index--; ) {
548
+ if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
549
+ timers[ index ].anim.stop( true );
550
+ timers.splice( index, 1 );
551
+ }
552
+ }
553
+
554
+ // look for any animations in the old queue and finish them
555
+ for ( index = 0; index < length; index++ ) {
556
+ if ( queue[ index ] && queue[ index ].finish ) {
557
+ queue[ index ].finish.call( this );
558
+ }
559
+ }
560
+
561
+ // turn off finishing flag
562
+ delete data.finish;
563
+ });
564
+ }
565
+ });
566
+
567
+ jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
568
+ var cssFn = jQuery.fn[ name ];
569
+ jQuery.fn[ name ] = function( speed, easing, callback ) {
570
+ return speed == null || typeof speed === "boolean" ?
571
+ cssFn.apply( this, arguments ) :
572
+ this.animate( genFx( name, true ), speed, easing, callback );
573
+ };
574
+ });
575
+
576
+ // Generate shortcuts for custom animations
577
+ jQuery.each({
578
+ slideDown: genFx("show"),
579
+ slideUp: genFx("hide"),
580
+ slideToggle: genFx("toggle"),
581
+ fadeIn: { opacity: "show" },
582
+ fadeOut: { opacity: "hide" },
583
+ fadeToggle: { opacity: "toggle" }
584
+ }, function( name, props ) {
585
+ jQuery.fn[ name ] = function( speed, easing, callback ) {
586
+ return this.animate( props, speed, easing, callback );
587
+ };
588
+ });
589
+
590
+ jQuery.timers = [];
591
+ jQuery.fx.tick = function() {
592
+ var timer,
593
+ i = 0,
594
+ timers = jQuery.timers;
595
+
596
+ fxNow = jQuery.now();
597
+
598
+ for ( ; i < timers.length; i++ ) {
599
+ timer = timers[ i ];
600
+ // Checks the timer has not already been removed
601
+ if ( !timer() && timers[ i ] === timer ) {
602
+ timers.splice( i--, 1 );
603
+ }
604
+ }
605
+
606
+ if ( !timers.length ) {
607
+ jQuery.fx.stop();
608
+ }
609
+ fxNow = undefined;
610
+ };
611
+
612
+ jQuery.fx.timer = function( timer ) {
613
+ jQuery.timers.push( timer );
614
+ if ( timer() ) {
615
+ jQuery.fx.start();
616
+ } else {
617
+ jQuery.timers.pop();
618
+ }
619
+ };
620
+
621
+ jQuery.fx.interval = 13;
622
+
623
+ jQuery.fx.start = function() {
624
+ if ( !timerId ) {
625
+ timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
626
+ }
627
+ };
628
+
629
+ jQuery.fx.stop = function() {
630
+ clearInterval( timerId );
631
+ timerId = null;
632
+ };
633
+
634
+ jQuery.fx.speeds = {
635
+ slow: 600,
636
+ fast: 200,
637
+ // Default speed
638
+ _default: 400
639
+ };
640
+
641
+ return jQuery;
642
+ });