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,24 @@
1
+ define(function() {
2
+
3
+ function addGetHookIf( conditionFn, hookFn ) {
4
+ // Define the hook, we'll check on the first run if it's really needed.
5
+ return {
6
+ get: function() {
7
+ if ( conditionFn() ) {
8
+ // Hook not needed (or it's not possible to use it due to missing dependency),
9
+ // remove it.
10
+ // Since there are no other hooks for marginRight, remove the whole object.
11
+ delete this.get;
12
+ return;
13
+ }
14
+
15
+ // Hook needed; redefine it so that the support test is not executed again.
16
+
17
+ return (this.get = hookFn).apply( this, arguments );
18
+ }
19
+ };
20
+ }
21
+
22
+ return addGetHookIf;
23
+
24
+ });
@@ -0,0 +1,57 @@
1
+ define([
2
+ "../core",
3
+ "./var/rnumnonpx",
4
+ "./var/rmargin",
5
+ "./var/getStyles",
6
+ "../selector" // contains
7
+ ], function( jQuery, rnumnonpx, rmargin, getStyles ) {
8
+
9
+ function curCSS( elem, name, computed ) {
10
+ var width, minWidth, maxWidth, ret,
11
+ style = elem.style;
12
+
13
+ computed = computed || getStyles( elem );
14
+
15
+ // Support: IE9
16
+ // getPropertyValue is only needed for .css('filter') in IE9, see #12537
17
+ if ( computed ) {
18
+ ret = computed.getPropertyValue( name ) || computed[ name ];
19
+ }
20
+
21
+ if ( computed ) {
22
+
23
+ if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
24
+ ret = jQuery.style( elem, name );
25
+ }
26
+
27
+ // Support: iOS < 6
28
+ // A tribute to the "awesome hack by Dean Edwards"
29
+ // iOS < 6 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels
30
+ // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
31
+ if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {
32
+
33
+ // Remember the original values
34
+ width = style.width;
35
+ minWidth = style.minWidth;
36
+ maxWidth = style.maxWidth;
37
+
38
+ // Put in the new values to get a computed value out
39
+ style.minWidth = style.maxWidth = style.width = ret;
40
+ ret = computed.width;
41
+
42
+ // Revert the changed values
43
+ style.width = width;
44
+ style.minWidth = minWidth;
45
+ style.maxWidth = maxWidth;
46
+ }
47
+ }
48
+
49
+ return ret !== undefined ?
50
+ // Support: IE
51
+ // IE returns zIndex value as an integer.
52
+ ret + "" :
53
+ ret;
54
+ }
55
+
56
+ return curCSS;
57
+ });
@@ -0,0 +1,70 @@
1
+ define([
2
+ "../core",
3
+ "../manipulation" // appendTo
4
+ ], function( jQuery ) {
5
+
6
+ var iframe,
7
+ elemdisplay = {};
8
+
9
+ /**
10
+ * Retrieve the actual display of a element
11
+ * @param {String} name nodeName of the element
12
+ * @param {Object} doc Document object
13
+ */
14
+ // Called only from within defaultDisplay
15
+ function actualDisplay( name, doc ) {
16
+ var style,
17
+ elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
18
+
19
+ // getDefaultComputedStyle might be reliably used only on attached element
20
+ display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?
21
+
22
+ // Use of this method is a temporary fix (more like optmization) until something better comes along,
23
+ // since it was removed from specification and supported only in FF
24
+ style.display : jQuery.css( elem[ 0 ], "display" );
25
+
26
+ // We don't have any data stored on the element,
27
+ // so use "detach" method as fast way to get rid of the element
28
+ elem.detach();
29
+
30
+ return display;
31
+ }
32
+
33
+ /**
34
+ * Try to determine the default display value of an element
35
+ * @param {String} nodeName
36
+ */
37
+ function defaultDisplay( nodeName ) {
38
+ var doc = document,
39
+ display = elemdisplay[ nodeName ];
40
+
41
+ if ( !display ) {
42
+ display = actualDisplay( nodeName, doc );
43
+
44
+ // If the simple way fails, read from inside an iframe
45
+ if ( display === "none" || !display ) {
46
+
47
+ // Use the already-created iframe if possible
48
+ iframe = (iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" )).appendTo( doc.documentElement );
49
+
50
+ // Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse
51
+ doc = iframe[ 0 ].contentDocument;
52
+
53
+ // Support: IE
54
+ doc.write();
55
+ doc.close();
56
+
57
+ display = actualDisplay( nodeName, doc );
58
+ iframe.detach();
59
+ }
60
+
61
+ // Store the correct default display
62
+ elemdisplay[ nodeName ] = display;
63
+ }
64
+
65
+ return display;
66
+ }
67
+
68
+ return defaultDisplay;
69
+
70
+ });
@@ -0,0 +1,15 @@
1
+ define([
2
+ "../core",
3
+ "../selector"
4
+ ], function( jQuery ) {
5
+
6
+ jQuery.expr.filters.hidden = function( elem ) {
7
+ // Support: Opera <= 12.12
8
+ // Opera reports offsetWidths and offsetHeights less than zero on some elements
9
+ return elem.offsetWidth <= 0 && elem.offsetHeight <= 0;
10
+ };
11
+ jQuery.expr.filters.visible = function( elem ) {
12
+ return !jQuery.expr.filters.hidden( elem );
13
+ };
14
+
15
+ });
@@ -0,0 +1,91 @@
1
+ define([
2
+ "../core",
3
+ "../var/support"
4
+ ], function( jQuery, support ) {
5
+
6
+ (function() {
7
+ var pixelPositionVal, boxSizingReliableVal,
8
+ docElem = document.documentElement,
9
+ container = document.createElement( "div" ),
10
+ div = document.createElement( "div" );
11
+
12
+ if ( !div.style ) {
13
+ return;
14
+ }
15
+
16
+ div.style.backgroundClip = "content-box";
17
+ div.cloneNode( true ).style.backgroundClip = "";
18
+ support.clearCloneStyle = div.style.backgroundClip === "content-box";
19
+
20
+ container.style.cssText = "border:0;width:0;height:0;top:0;left:-9999px;margin-top:1px;" +
21
+ "position:absolute";
22
+ container.appendChild( div );
23
+
24
+ // Executing both pixelPosition & boxSizingReliable tests require only one layout
25
+ // so they're executed at the same time to save the second computation.
26
+ function computePixelPositionAndBoxSizingReliable() {
27
+ div.style.cssText =
28
+ // Support: Firefox<29, Android 2.3
29
+ // Vendor-prefix box-sizing
30
+ "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;" +
31
+ "box-sizing:border-box;display:block;margin-top:1%;top:1%;" +
32
+ "border:1px;padding:1px;width:4px;position:absolute";
33
+ div.innerHTML = "";
34
+ docElem.appendChild( container );
35
+
36
+ var divStyle = window.getComputedStyle( div, null );
37
+ pixelPositionVal = divStyle.top !== "1%";
38
+ boxSizingReliableVal = divStyle.width === "4px";
39
+
40
+ docElem.removeChild( container );
41
+ }
42
+
43
+ // Support: node.js jsdom
44
+ // Don't assume that getComputedStyle is a property of the global object
45
+ if ( window.getComputedStyle ) {
46
+ jQuery.extend( support, {
47
+ pixelPosition: function() {
48
+ // This test is executed only once but we still do memoizing
49
+ // since we can use the boxSizingReliable pre-computing.
50
+ // No need to check if the test was already performed, though.
51
+ computePixelPositionAndBoxSizingReliable();
52
+ return pixelPositionVal;
53
+ },
54
+ boxSizingReliable: function() {
55
+ if ( boxSizingReliableVal == null ) {
56
+ computePixelPositionAndBoxSizingReliable();
57
+ }
58
+ return boxSizingReliableVal;
59
+ },
60
+ reliableMarginRight: function() {
61
+ // Support: Android 2.3
62
+ // Check if div with explicit width and no margin-right incorrectly
63
+ // gets computed margin-right based on width of container. (#3333)
64
+ // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
65
+ // This support function is only executed once so no memoizing is needed.
66
+ var ret,
67
+ marginDiv = div.appendChild( document.createElement( "div" ) );
68
+
69
+ // Reset CSS: box-sizing; display; margin; border; padding
70
+ marginDiv.style.cssText = div.style.cssText =
71
+ // Support: Firefox<29, Android 2.3
72
+ // Vendor-prefix box-sizing
73
+ "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" +
74
+ "box-sizing:content-box;display:block;margin:0;border:0;padding:0";
75
+ marginDiv.style.marginRight = marginDiv.style.width = "0";
76
+ div.style.width = "1px";
77
+ docElem.appendChild( container );
78
+
79
+ ret = !parseFloat( window.getComputedStyle( marginDiv, null ).marginRight );
80
+
81
+ docElem.removeChild( container );
82
+
83
+ return ret;
84
+ }
85
+ });
86
+ }
87
+ })();
88
+
89
+ return support;
90
+
91
+ });
@@ -0,0 +1,28 @@
1
+ define([
2
+ "../core"
3
+ ], function( jQuery ) {
4
+
5
+ // A method for quickly swapping in/out CSS properties to get correct calculations.
6
+ jQuery.swap = function( elem, options, callback, args ) {
7
+ var ret, name,
8
+ old = {};
9
+
10
+ // Remember the old values, and insert the new ones
11
+ for ( name in options ) {
12
+ old[ name ] = elem.style[ name ];
13
+ elem.style[ name ] = options[ name ];
14
+ }
15
+
16
+ ret = callback.apply( elem, args || [] );
17
+
18
+ // Revert the old values
19
+ for ( name in options ) {
20
+ elem.style[ name ] = old[ name ];
21
+ }
22
+
23
+ return ret;
24
+ };
25
+
26
+ return jQuery.swap;
27
+
28
+ });
@@ -0,0 +1,3 @@
1
+ define(function() {
2
+ return [ "Top", "Right", "Bottom", "Left" ];
3
+ });
@@ -0,0 +1,5 @@
1
+ define(function() {
2
+ return function( elem ) {
3
+ return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
4
+ };
5
+ });
@@ -0,0 +1,13 @@
1
+ define([
2
+ "../../core",
3
+ "../../selector"
4
+ // css is assumed
5
+ ], function( jQuery ) {
6
+
7
+ return function( elem, el ) {
8
+ // isHidden might be called from jQuery#filter function;
9
+ // in that case, element will be second argument
10
+ elem = el || elem;
11
+ return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
12
+ };
13
+ });
@@ -0,0 +1,3 @@
1
+ define(function() {
2
+ return (/^margin/);
3
+ });
@@ -0,0 +1,5 @@
1
+ define([
2
+ "../../var/pnum"
3
+ ], function( pnum ) {
4
+ return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
5
+ });
@@ -0,0 +1,179 @@
1
+ define([
2
+ "./core",
3
+ "./var/rnotwhite",
4
+ "./core/access",
5
+ "./data/var/data_priv",
6
+ "./data/var/data_user"
7
+ ], function( jQuery, rnotwhite, access, data_priv, data_user ) {
8
+
9
+ /*
10
+ Implementation Summary
11
+
12
+ 1. Enforce API surface and semantic compatibility with 1.9.x branch
13
+ 2. Improve the module's maintainability by reducing the storage
14
+ paths to a single mechanism.
15
+ 3. Use the same single mechanism to support "private" and "user" data.
16
+ 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
17
+ 5. Avoid exposing implementation details on user objects (eg. expando properties)
18
+ 6. Provide a clear path for implementation upgrade to WeakMap in 2014
19
+ */
20
+ var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
21
+ rmultiDash = /([A-Z])/g;
22
+
23
+ function dataAttr( elem, key, data ) {
24
+ var name;
25
+
26
+ // If nothing was found internally, try to fetch any
27
+ // data from the HTML5 data-* attribute
28
+ if ( data === undefined && elem.nodeType === 1 ) {
29
+ name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
30
+ data = elem.getAttribute( name );
31
+
32
+ if ( typeof data === "string" ) {
33
+ try {
34
+ data = data === "true" ? true :
35
+ data === "false" ? false :
36
+ data === "null" ? null :
37
+ // Only convert to a number if it doesn't change the string
38
+ +data + "" === data ? +data :
39
+ rbrace.test( data ) ? jQuery.parseJSON( data ) :
40
+ data;
41
+ } catch( e ) {}
42
+
43
+ // Make sure we set the data so it isn't changed later
44
+ data_user.set( elem, key, data );
45
+ } else {
46
+ data = undefined;
47
+ }
48
+ }
49
+ return data;
50
+ }
51
+
52
+ jQuery.extend({
53
+ hasData: function( elem ) {
54
+ return data_user.hasData( elem ) || data_priv.hasData( elem );
55
+ },
56
+
57
+ data: function( elem, name, data ) {
58
+ return data_user.access( elem, name, data );
59
+ },
60
+
61
+ removeData: function( elem, name ) {
62
+ data_user.remove( elem, name );
63
+ },
64
+
65
+ // TODO: Now that all calls to _data and _removeData have been replaced
66
+ // with direct calls to data_priv methods, these can be deprecated.
67
+ _data: function( elem, name, data ) {
68
+ return data_priv.access( elem, name, data );
69
+ },
70
+
71
+ _removeData: function( elem, name ) {
72
+ data_priv.remove( elem, name );
73
+ }
74
+ });
75
+
76
+ jQuery.fn.extend({
77
+ data: function( key, value ) {
78
+ var i, name, data,
79
+ elem = this[ 0 ],
80
+ attrs = elem && elem.attributes;
81
+
82
+ // Gets all values
83
+ if ( key === undefined ) {
84
+ if ( this.length ) {
85
+ data = data_user.get( elem );
86
+
87
+ if ( elem.nodeType === 1 && !data_priv.get( elem, "hasDataAttrs" ) ) {
88
+ i = attrs.length;
89
+ while ( i-- ) {
90
+
91
+ // Support: IE11+
92
+ // The attrs elements can be null (#14894)
93
+ if ( attrs[ i ] ) {
94
+ name = attrs[ i ].name;
95
+ if ( name.indexOf( "data-" ) === 0 ) {
96
+ name = jQuery.camelCase( name.slice(5) );
97
+ dataAttr( elem, name, data[ name ] );
98
+ }
99
+ }
100
+ }
101
+ data_priv.set( elem, "hasDataAttrs", true );
102
+ }
103
+ }
104
+
105
+ return data;
106
+ }
107
+
108
+ // Sets multiple values
109
+ if ( typeof key === "object" ) {
110
+ return this.each(function() {
111
+ data_user.set( this, key );
112
+ });
113
+ }
114
+
115
+ return access( this, function( value ) {
116
+ var data,
117
+ camelKey = jQuery.camelCase( key );
118
+
119
+ // The calling jQuery object (element matches) is not empty
120
+ // (and therefore has an element appears at this[ 0 ]) and the
121
+ // `value` parameter was not undefined. An empty jQuery object
122
+ // will result in `undefined` for elem = this[ 0 ] which will
123
+ // throw an exception if an attempt to read a data cache is made.
124
+ if ( elem && value === undefined ) {
125
+ // Attempt to get data from the cache
126
+ // with the key as-is
127
+ data = data_user.get( elem, key );
128
+ if ( data !== undefined ) {
129
+ return data;
130
+ }
131
+
132
+ // Attempt to get data from the cache
133
+ // with the key camelized
134
+ data = data_user.get( elem, camelKey );
135
+ if ( data !== undefined ) {
136
+ return data;
137
+ }
138
+
139
+ // Attempt to "discover" the data in
140
+ // HTML5 custom data-* attrs
141
+ data = dataAttr( elem, camelKey, undefined );
142
+ if ( data !== undefined ) {
143
+ return data;
144
+ }
145
+
146
+ // We tried really hard, but the data doesn't exist.
147
+ return;
148
+ }
149
+
150
+ // Set the data...
151
+ this.each(function() {
152
+ // First, attempt to store a copy or reference of any
153
+ // data that might've been store with a camelCased key.
154
+ var data = data_user.get( this, camelKey );
155
+
156
+ // For HTML5 data-* attribute interop, we have to
157
+ // store property names with dashes in a camelCase form.
158
+ // This might not apply to all properties...*
159
+ data_user.set( this, camelKey, value );
160
+
161
+ // *... In the case of properties that might _actually_
162
+ // have dashes, we need to also store a copy of that
163
+ // unchanged property.
164
+ if ( key.indexOf("-") !== -1 && data !== undefined ) {
165
+ data_user.set( this, key, value );
166
+ }
167
+ });
168
+ }, null, value, arguments.length > 1, null, true );
169
+ },
170
+
171
+ removeData: function( key ) {
172
+ return this.each(function() {
173
+ data_user.remove( this, key );
174
+ });
175
+ }
176
+ });
177
+
178
+ return jQuery;
179
+ });