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,39 @@
1
+ define([
2
+ "../core",
3
+ "../event"
4
+ ], function( jQuery ) {
5
+
6
+ jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " +
7
+ "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
8
+ "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) {
9
+
10
+ // Handle event binding
11
+ jQuery.fn[ name ] = function( data, fn ) {
12
+ return arguments.length > 0 ?
13
+ this.on( name, null, data, fn ) :
14
+ this.trigger( name );
15
+ };
16
+ });
17
+
18
+ jQuery.fn.extend({
19
+ hover: function( fnOver, fnOut ) {
20
+ return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
21
+ },
22
+
23
+ bind: function( types, data, fn ) {
24
+ return this.on( types, null, data, fn );
25
+ },
26
+ unbind: function( types, fn ) {
27
+ return this.off( types, null, fn );
28
+ },
29
+
30
+ delegate: function( selector, types, data, fn ) {
31
+ return this.on( types, selector, data, fn );
32
+ },
33
+ undelegate: function( selector, types, fn ) {
34
+ // ( namespace ) or ( selector, types [, fn] )
35
+ return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
36
+ }
37
+ });
38
+
39
+ });
@@ -0,0 +1,9 @@
1
+ define([
2
+ "../var/support"
3
+ ], function( support ) {
4
+
5
+ support.focusinBubbles = "onfocusin" in window;
6
+
7
+ return support;
8
+
9
+ });
@@ -0,0 +1,24 @@
1
+ define([
2
+ "../core"
3
+ ], function( jQuery ) {
4
+
5
+ // Register as a named AMD module, since jQuery can be concatenated with other
6
+ // files that may use define, but not via a proper concatenation script that
7
+ // understands anonymous AMD modules. A named AMD is safest and most robust
8
+ // way to register. Lowercase jquery is used because AMD module names are
9
+ // derived from file names, and jQuery is normally delivered in a lowercase
10
+ // file name. Do this after creating the global so that if an AMD module wants
11
+ // to call noConflict to hide this version of jQuery, it will work.
12
+
13
+ // Note that for maximum portability, libraries that are not jQuery should
14
+ // declare themselves as anonymous modules, and avoid setting a global if an
15
+ // AMD loader is present. jQuery is a special case. For more information, see
16
+ // https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
17
+
18
+ if ( typeof define === "function" && define.amd ) {
19
+ define( "jquery", [], function() {
20
+ return jQuery;
21
+ });
22
+ }
23
+
24
+ });
@@ -0,0 +1,32 @@
1
+ define([
2
+ "../core",
3
+ "../var/strundefined"
4
+ ], function( jQuery, strundefined ) {
5
+
6
+ var
7
+ // Map over jQuery in case of overwrite
8
+ _jQuery = window.jQuery,
9
+
10
+ // Map over the $ in case of overwrite
11
+ _$ = window.$;
12
+
13
+ jQuery.noConflict = function( deep ) {
14
+ if ( window.$ === jQuery ) {
15
+ window.$ = _$;
16
+ }
17
+
18
+ if ( deep && window.jQuery === jQuery ) {
19
+ window.jQuery = _jQuery;
20
+ }
21
+
22
+ return jQuery;
23
+ };
24
+
25
+ // Expose jQuery and $ identifiers, even in
26
+ // AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
27
+ // and CommonJS for browser emulators (#13566)
28
+ if ( typeof noGlobal === strundefined ) {
29
+ window.jQuery = window.$ = jQuery;
30
+ }
31
+
32
+ });
@@ -0,0 +1,44 @@
1
+ /*!
2
+ * jQuery JavaScript Library v@VERSION
3
+ * http://jquery.com/
4
+ *
5
+ * Includes Sizzle.js
6
+ * http://sizzlejs.com/
7
+ *
8
+ * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors
9
+ * Released under the MIT license
10
+ * http://jquery.org/license
11
+ *
12
+ * Date: @DATE
13
+ */
14
+
15
+ (function( global, factory ) {
16
+
17
+ if ( typeof module === "object" && typeof module.exports === "object" ) {
18
+ // For CommonJS and CommonJS-like environments where a proper window is present,
19
+ // execute the factory and get jQuery
20
+ // For environments that do not inherently posses a window with a document
21
+ // (such as Node.js), expose a jQuery-making factory as module.exports
22
+ // This accentuates the need for the creation of a real window
23
+ // e.g. var jQuery = require("jquery")(window);
24
+ // See ticket #14549 for more info
25
+ module.exports = global.document ?
26
+ factory( global, true ) :
27
+ function( w ) {
28
+ if ( !w.document ) {
29
+ throw new Error( "jQuery requires a window with a document" );
30
+ }
31
+ return factory( w );
32
+ };
33
+ } else {
34
+ factory( global );
35
+ }
36
+
37
+ // Pass this if window is not defined yet
38
+ }(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
39
+
40
+ // Can't do this because several apps including ASP.NET trace
41
+ // the stack via arguments.caller.callee and Firefox dies if
42
+ // you try to trace through "use strict" call chains. (#13335)
43
+ // Support: Firefox 18+
44
+ //"use strict";
@@ -0,0 +1,36 @@
1
+ define([
2
+ "./core",
3
+ "./selector",
4
+ "./traversing",
5
+ "./callbacks",
6
+ "./deferred",
7
+ "./core/ready",
8
+ "./data",
9
+ "./queue",
10
+ "./queue/delay",
11
+ "./attributes",
12
+ "./event",
13
+ "./event/alias",
14
+ "./manipulation",
15
+ "./manipulation/_evalUrl",
16
+ "./wrap",
17
+ "./css",
18
+ "./css/hiddenVisibleSelectors",
19
+ "./serialize",
20
+ "./ajax",
21
+ "./ajax/xhr",
22
+ "./ajax/script",
23
+ "./ajax/jsonp",
24
+ "./ajax/load",
25
+ "./effects",
26
+ "./effects/animatedSelector",
27
+ "./offset",
28
+ "./dimensions",
29
+ "./deprecated",
30
+ "./exports/amd",
31
+ "./exports/global"
32
+ ], function( jQuery ) {
33
+
34
+ return jQuery;
35
+
36
+ });
@@ -0,0 +1,582 @@
1
+ define([
2
+ "./core",
3
+ "./var/concat",
4
+ "./var/push",
5
+ "./core/access",
6
+ "./manipulation/var/rcheckableType",
7
+ "./manipulation/support",
8
+ "./data/var/data_priv",
9
+ "./data/var/data_user",
10
+
11
+ "./core/init",
12
+ "./data/accepts",
13
+ "./traversing",
14
+ "./selector",
15
+ "./event"
16
+ ], function( jQuery, concat, push, access, rcheckableType, support, data_priv, data_user ) {
17
+
18
+ var
19
+ rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
20
+ rtagName = /<([\w:]+)/,
21
+ rhtml = /<|&#?\w+;/,
22
+ rnoInnerhtml = /<(?:script|style|link)/i,
23
+ // checked="checked" or checked
24
+ rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
25
+ rscriptType = /^$|\/(?:java|ecma)script/i,
26
+ rscriptTypeMasked = /^true\/(.*)/,
27
+ rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,
28
+
29
+ // We have to close these tags to support XHTML (#13200)
30
+ wrapMap = {
31
+
32
+ // Support: IE 9
33
+ option: [ 1, "<select multiple='multiple'>", "</select>" ],
34
+
35
+ thead: [ 1, "<table>", "</table>" ],
36
+ col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
37
+ tr: [ 2, "<table><tbody>", "</tbody></table>" ],
38
+ td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
39
+
40
+ _default: [ 0, "", "" ]
41
+ };
42
+
43
+ // Support: IE 9
44
+ wrapMap.optgroup = wrapMap.option;
45
+
46
+ wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
47
+ wrapMap.th = wrapMap.td;
48
+
49
+ // Support: 1.x compatibility
50
+ // Manipulating tables requires a tbody
51
+ function manipulationTarget( elem, content ) {
52
+ return jQuery.nodeName( elem, "table" ) &&
53
+ jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ?
54
+
55
+ elem.getElementsByTagName("tbody")[0] ||
56
+ elem.appendChild( elem.ownerDocument.createElement("tbody") ) :
57
+ elem;
58
+ }
59
+
60
+ // Replace/restore the type attribute of script elements for safe DOM manipulation
61
+ function disableScript( elem ) {
62
+ elem.type = (elem.getAttribute("type") !== null) + "/" + elem.type;
63
+ return elem;
64
+ }
65
+ function restoreScript( elem ) {
66
+ var match = rscriptTypeMasked.exec( elem.type );
67
+
68
+ if ( match ) {
69
+ elem.type = match[ 1 ];
70
+ } else {
71
+ elem.removeAttribute("type");
72
+ }
73
+
74
+ return elem;
75
+ }
76
+
77
+ // Mark scripts as having already been evaluated
78
+ function setGlobalEval( elems, refElements ) {
79
+ var i = 0,
80
+ l = elems.length;
81
+
82
+ for ( ; i < l; i++ ) {
83
+ data_priv.set(
84
+ elems[ i ], "globalEval", !refElements || data_priv.get( refElements[ i ], "globalEval" )
85
+ );
86
+ }
87
+ }
88
+
89
+ function cloneCopyEvent( src, dest ) {
90
+ var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
91
+
92
+ if ( dest.nodeType !== 1 ) {
93
+ return;
94
+ }
95
+
96
+ // 1. Copy private data: events, handlers, etc.
97
+ if ( data_priv.hasData( src ) ) {
98
+ pdataOld = data_priv.access( src );
99
+ pdataCur = data_priv.set( dest, pdataOld );
100
+ events = pdataOld.events;
101
+
102
+ if ( events ) {
103
+ delete pdataCur.handle;
104
+ pdataCur.events = {};
105
+
106
+ for ( type in events ) {
107
+ for ( i = 0, l = events[ type ].length; i < l; i++ ) {
108
+ jQuery.event.add( dest, type, events[ type ][ i ] );
109
+ }
110
+ }
111
+ }
112
+ }
113
+
114
+ // 2. Copy user data
115
+ if ( data_user.hasData( src ) ) {
116
+ udataOld = data_user.access( src );
117
+ udataCur = jQuery.extend( {}, udataOld );
118
+
119
+ data_user.set( dest, udataCur );
120
+ }
121
+ }
122
+
123
+ function getAll( context, tag ) {
124
+ var ret = context.getElementsByTagName ? context.getElementsByTagName( tag || "*" ) :
125
+ context.querySelectorAll ? context.querySelectorAll( tag || "*" ) :
126
+ [];
127
+
128
+ return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
129
+ jQuery.merge( [ context ], ret ) :
130
+ ret;
131
+ }
132
+
133
+ // Support: IE >= 9
134
+ function fixInput( src, dest ) {
135
+ var nodeName = dest.nodeName.toLowerCase();
136
+
137
+ // Fails to persist the checked state of a cloned checkbox or radio button.
138
+ if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
139
+ dest.checked = src.checked;
140
+
141
+ // Fails to return the selected option to the default selected state when cloning options
142
+ } else if ( nodeName === "input" || nodeName === "textarea" ) {
143
+ dest.defaultValue = src.defaultValue;
144
+ }
145
+ }
146
+
147
+ jQuery.extend({
148
+ clone: function( elem, dataAndEvents, deepDataAndEvents ) {
149
+ var i, l, srcElements, destElements,
150
+ clone = elem.cloneNode( true ),
151
+ inPage = jQuery.contains( elem.ownerDocument, elem );
152
+
153
+ // Support: IE >= 9
154
+ // Fix Cloning issues
155
+ if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
156
+ !jQuery.isXMLDoc( elem ) ) {
157
+
158
+ // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
159
+ destElements = getAll( clone );
160
+ srcElements = getAll( elem );
161
+
162
+ for ( i = 0, l = srcElements.length; i < l; i++ ) {
163
+ fixInput( srcElements[ i ], destElements[ i ] );
164
+ }
165
+ }
166
+
167
+ // Copy the events from the original to the clone
168
+ if ( dataAndEvents ) {
169
+ if ( deepDataAndEvents ) {
170
+ srcElements = srcElements || getAll( elem );
171
+ destElements = destElements || getAll( clone );
172
+
173
+ for ( i = 0, l = srcElements.length; i < l; i++ ) {
174
+ cloneCopyEvent( srcElements[ i ], destElements[ i ] );
175
+ }
176
+ } else {
177
+ cloneCopyEvent( elem, clone );
178
+ }
179
+ }
180
+
181
+ // Preserve script evaluation history
182
+ destElements = getAll( clone, "script" );
183
+ if ( destElements.length > 0 ) {
184
+ setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
185
+ }
186
+
187
+ // Return the cloned set
188
+ return clone;
189
+ },
190
+
191
+ buildFragment: function( elems, context, scripts, selection ) {
192
+ var elem, tmp, tag, wrap, contains, j,
193
+ fragment = context.createDocumentFragment(),
194
+ nodes = [],
195
+ i = 0,
196
+ l = elems.length;
197
+
198
+ for ( ; i < l; i++ ) {
199
+ elem = elems[ i ];
200
+
201
+ if ( elem || elem === 0 ) {
202
+
203
+ // Add nodes directly
204
+ if ( jQuery.type( elem ) === "object" ) {
205
+ // Support: QtWebKit
206
+ // jQuery.merge because push.apply(_, arraylike) throws
207
+ jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
208
+
209
+ // Convert non-html into a text node
210
+ } else if ( !rhtml.test( elem ) ) {
211
+ nodes.push( context.createTextNode( elem ) );
212
+
213
+ // Convert html into DOM nodes
214
+ } else {
215
+ tmp = tmp || fragment.appendChild( context.createElement("div") );
216
+
217
+ // Deserialize a standard representation
218
+ tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
219
+ wrap = wrapMap[ tag ] || wrapMap._default;
220
+ tmp.innerHTML = wrap[ 1 ] + elem.replace( rxhtmlTag, "<$1></$2>" ) + wrap[ 2 ];
221
+
222
+ // Descend through wrappers to the right content
223
+ j = wrap[ 0 ];
224
+ while ( j-- ) {
225
+ tmp = tmp.lastChild;
226
+ }
227
+
228
+ // Support: QtWebKit
229
+ // jQuery.merge because push.apply(_, arraylike) throws
230
+ jQuery.merge( nodes, tmp.childNodes );
231
+
232
+ // Remember the top-level container
233
+ tmp = fragment.firstChild;
234
+
235
+ // Fixes #12346
236
+ // Support: Webkit, IE
237
+ tmp.textContent = "";
238
+ }
239
+ }
240
+ }
241
+
242
+ // Remove wrapper from fragment
243
+ fragment.textContent = "";
244
+
245
+ i = 0;
246
+ while ( (elem = nodes[ i++ ]) ) {
247
+
248
+ // #4087 - If origin and destination elements are the same, and this is
249
+ // that element, do not do anything
250
+ if ( selection && jQuery.inArray( elem, selection ) !== -1 ) {
251
+ continue;
252
+ }
253
+
254
+ contains = jQuery.contains( elem.ownerDocument, elem );
255
+
256
+ // Append to fragment
257
+ tmp = getAll( fragment.appendChild( elem ), "script" );
258
+
259
+ // Preserve script evaluation history
260
+ if ( contains ) {
261
+ setGlobalEval( tmp );
262
+ }
263
+
264
+ // Capture executables
265
+ if ( scripts ) {
266
+ j = 0;
267
+ while ( (elem = tmp[ j++ ]) ) {
268
+ if ( rscriptType.test( elem.type || "" ) ) {
269
+ scripts.push( elem );
270
+ }
271
+ }
272
+ }
273
+ }
274
+
275
+ return fragment;
276
+ },
277
+
278
+ cleanData: function( elems ) {
279
+ var data, elem, type, key,
280
+ special = jQuery.event.special,
281
+ i = 0;
282
+
283
+ for ( ; (elem = elems[ i ]) !== undefined; i++ ) {
284
+ if ( jQuery.acceptData( elem ) ) {
285
+ key = elem[ data_priv.expando ];
286
+
287
+ if ( key && (data = data_priv.cache[ key ]) ) {
288
+ if ( data.events ) {
289
+ for ( type in data.events ) {
290
+ if ( special[ type ] ) {
291
+ jQuery.event.remove( elem, type );
292
+
293
+ // This is a shortcut to avoid jQuery.event.remove's overhead
294
+ } else {
295
+ jQuery.removeEvent( elem, type, data.handle );
296
+ }
297
+ }
298
+ }
299
+ if ( data_priv.cache[ key ] ) {
300
+ // Discard any remaining `private` data
301
+ delete data_priv.cache[ key ];
302
+ }
303
+ }
304
+ }
305
+ // Discard any remaining `user` data
306
+ delete data_user.cache[ elem[ data_user.expando ] ];
307
+ }
308
+ }
309
+ });
310
+
311
+ jQuery.fn.extend({
312
+ text: function( value ) {
313
+ return access( this, function( value ) {
314
+ return value === undefined ?
315
+ jQuery.text( this ) :
316
+ this.empty().each(function() {
317
+ if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
318
+ this.textContent = value;
319
+ }
320
+ });
321
+ }, null, value, arguments.length );
322
+ },
323
+
324
+ append: function() {
325
+ return this.domManip( arguments, function( elem ) {
326
+ if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
327
+ var target = manipulationTarget( this, elem );
328
+ target.appendChild( elem );
329
+ }
330
+ });
331
+ },
332
+
333
+ prepend: function() {
334
+ return this.domManip( arguments, function( elem ) {
335
+ if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
336
+ var target = manipulationTarget( this, elem );
337
+ target.insertBefore( elem, target.firstChild );
338
+ }
339
+ });
340
+ },
341
+
342
+ before: function() {
343
+ return this.domManip( arguments, function( elem ) {
344
+ if ( this.parentNode ) {
345
+ this.parentNode.insertBefore( elem, this );
346
+ }
347
+ });
348
+ },
349
+
350
+ after: function() {
351
+ return this.domManip( arguments, function( elem ) {
352
+ if ( this.parentNode ) {
353
+ this.parentNode.insertBefore( elem, this.nextSibling );
354
+ }
355
+ });
356
+ },
357
+
358
+ remove: function( selector, keepData /* Internal Use Only */ ) {
359
+ var elem,
360
+ elems = selector ? jQuery.filter( selector, this ) : this,
361
+ i = 0;
362
+
363
+ for ( ; (elem = elems[i]) != null; i++ ) {
364
+ if ( !keepData && elem.nodeType === 1 ) {
365
+ jQuery.cleanData( getAll( elem ) );
366
+ }
367
+
368
+ if ( elem.parentNode ) {
369
+ if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {
370
+ setGlobalEval( getAll( elem, "script" ) );
371
+ }
372
+ elem.parentNode.removeChild( elem );
373
+ }
374
+ }
375
+
376
+ return this;
377
+ },
378
+
379
+ empty: function() {
380
+ var elem,
381
+ i = 0;
382
+
383
+ for ( ; (elem = this[i]) != null; i++ ) {
384
+ if ( elem.nodeType === 1 ) {
385
+
386
+ // Prevent memory leaks
387
+ jQuery.cleanData( getAll( elem, false ) );
388
+
389
+ // Remove any remaining nodes
390
+ elem.textContent = "";
391
+ }
392
+ }
393
+
394
+ return this;
395
+ },
396
+
397
+ clone: function( dataAndEvents, deepDataAndEvents ) {
398
+ dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
399
+ deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
400
+
401
+ return this.map(function() {
402
+ return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
403
+ });
404
+ },
405
+
406
+ html: function( value ) {
407
+ return access( this, function( value ) {
408
+ var elem = this[ 0 ] || {},
409
+ i = 0,
410
+ l = this.length;
411
+
412
+ if ( value === undefined && elem.nodeType === 1 ) {
413
+ return elem.innerHTML;
414
+ }
415
+
416
+ // See if we can take a shortcut and just use innerHTML
417
+ if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
418
+ !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
419
+
420
+ value = value.replace( rxhtmlTag, "<$1></$2>" );
421
+
422
+ try {
423
+ for ( ; i < l; i++ ) {
424
+ elem = this[ i ] || {};
425
+
426
+ // Remove element nodes and prevent memory leaks
427
+ if ( elem.nodeType === 1 ) {
428
+ jQuery.cleanData( getAll( elem, false ) );
429
+ elem.innerHTML = value;
430
+ }
431
+ }
432
+
433
+ elem = 0;
434
+
435
+ // If using innerHTML throws an exception, use the fallback method
436
+ } catch( e ) {}
437
+ }
438
+
439
+ if ( elem ) {
440
+ this.empty().append( value );
441
+ }
442
+ }, null, value, arguments.length );
443
+ },
444
+
445
+ replaceWith: function() {
446
+ var arg = arguments[ 0 ];
447
+
448
+ // Make the changes, replacing each context element with the new content
449
+ this.domManip( arguments, function( elem ) {
450
+ arg = this.parentNode;
451
+
452
+ jQuery.cleanData( getAll( this ) );
453
+
454
+ if ( arg ) {
455
+ arg.replaceChild( elem, this );
456
+ }
457
+ });
458
+
459
+ // Force removal if there was no new content (e.g., from empty arguments)
460
+ return arg && (arg.length || arg.nodeType) ? this : this.remove();
461
+ },
462
+
463
+ detach: function( selector ) {
464
+ return this.remove( selector, true );
465
+ },
466
+
467
+ domManip: function( args, callback ) {
468
+
469
+ // Flatten any nested arrays
470
+ args = concat.apply( [], args );
471
+
472
+ var fragment, first, scripts, hasScripts, node, doc,
473
+ i = 0,
474
+ l = this.length,
475
+ set = this,
476
+ iNoClone = l - 1,
477
+ value = args[ 0 ],
478
+ isFunction = jQuery.isFunction( value );
479
+
480
+ // We can't cloneNode fragments that contain checked, in WebKit
481
+ if ( isFunction ||
482
+ ( l > 1 && typeof value === "string" &&
483
+ !support.checkClone && rchecked.test( value ) ) ) {
484
+ return this.each(function( index ) {
485
+ var self = set.eq( index );
486
+ if ( isFunction ) {
487
+ args[ 0 ] = value.call( this, index, self.html() );
488
+ }
489
+ self.domManip( args, callback );
490
+ });
491
+ }
492
+
493
+ if ( l ) {
494
+ fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );
495
+ first = fragment.firstChild;
496
+
497
+ if ( fragment.childNodes.length === 1 ) {
498
+ fragment = first;
499
+ }
500
+
501
+ if ( first ) {
502
+ scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
503
+ hasScripts = scripts.length;
504
+
505
+ // Use the original fragment for the last item instead of the first because it can end up
506
+ // being emptied incorrectly in certain situations (#8070).
507
+ for ( ; i < l; i++ ) {
508
+ node = fragment;
509
+
510
+ if ( i !== iNoClone ) {
511
+ node = jQuery.clone( node, true, true );
512
+
513
+ // Keep references to cloned scripts for later restoration
514
+ if ( hasScripts ) {
515
+ // Support: QtWebKit
516
+ // jQuery.merge because push.apply(_, arraylike) throws
517
+ jQuery.merge( scripts, getAll( node, "script" ) );
518
+ }
519
+ }
520
+
521
+ callback.call( this[ i ], node, i );
522
+ }
523
+
524
+ if ( hasScripts ) {
525
+ doc = scripts[ scripts.length - 1 ].ownerDocument;
526
+
527
+ // Reenable scripts
528
+ jQuery.map( scripts, restoreScript );
529
+
530
+ // Evaluate executable scripts on first document insertion
531
+ for ( i = 0; i < hasScripts; i++ ) {
532
+ node = scripts[ i ];
533
+ if ( rscriptType.test( node.type || "" ) &&
534
+ !data_priv.access( node, "globalEval" ) && jQuery.contains( doc, node ) ) {
535
+
536
+ if ( node.src ) {
537
+ // Optional AJAX dependency, but won't run scripts if not present
538
+ if ( jQuery._evalUrl ) {
539
+ jQuery._evalUrl( node.src );
540
+ }
541
+ } else {
542
+ jQuery.globalEval( node.textContent.replace( rcleanScript, "" ) );
543
+ }
544
+ }
545
+ }
546
+ }
547
+ }
548
+ }
549
+
550
+ return this;
551
+ }
552
+ });
553
+
554
+ jQuery.each({
555
+ appendTo: "append",
556
+ prependTo: "prepend",
557
+ insertBefore: "before",
558
+ insertAfter: "after",
559
+ replaceAll: "replaceWith"
560
+ }, function( name, original ) {
561
+ jQuery.fn[ name ] = function( selector ) {
562
+ var elems,
563
+ ret = [],
564
+ insert = jQuery( selector ),
565
+ last = insert.length - 1,
566
+ i = 0;
567
+
568
+ for ( ; i <= last; i++ ) {
569
+ elems = i === last ? this : this.clone( true );
570
+ jQuery( insert[ i ] )[ original ]( elems );
571
+
572
+ // Support: QtWebKit
573
+ // .get() because push.apply(_, arraylike) throws
574
+ push.apply( ret, elems.get() );
575
+ }
576
+
577
+ return this.pushStack( ret );
578
+ };
579
+ });
580
+
581
+ return jQuery;
582
+ });