mdarray-sol 0.1.0-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (683) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +35 -0
  3. data/LICENSE.txt~ +73 -0
  4. data/README.md +140 -0
  5. data/README.md~ +290 -0
  6. data/Rakefile +80 -0
  7. data/config.rb +223 -0
  8. data/doc/Nashorn.html +1406 -0
  9. data/doc/Sol.html +692 -0
  10. data/doc/Sol/BarChart.html +181 -0
  11. data/doc/Sol/BaseChart.html +799 -0
  12. data/doc/Sol/Bootstrap.html +1134 -0
  13. data/doc/Sol/Bridge.html +448 -0
  14. data/doc/Sol/Chart.html +1162 -0
  15. data/doc/Sol/CoordinateChart.html +673 -0
  16. data/doc/Sol/DCFX.html +807 -0
  17. data/doc/Sol/Dashboard.html +1967 -0
  18. data/doc/Sol/ExecMessages.html +332 -0
  19. data/doc/Sol/GuiCommunication.html +230 -0
  20. data/doc/Sol/Interval.html +1213 -0
  21. data/doc/Sol/JS.html +448 -0
  22. data/doc/Sol/LineChart.html +344 -0
  23. data/doc/Sol/LinearScale.html +334 -0
  24. data/doc/Sol/Margins.html +219 -0
  25. data/doc/Sol/OrdinalScale.html +263 -0
  26. data/doc/Sol/ReadBuffer.html +302 -0
  27. data/doc/Sol/Scale.html +462 -0
  28. data/doc/Sol/Stack.html +199 -0
  29. data/doc/Sol/TimeScale.html +396 -0
  30. data/doc/_index.html +362 -0
  31. data/doc/class_list.html +58 -0
  32. data/doc/css/common.css +1 -0
  33. data/doc/css/full_list.css +57 -0
  34. data/doc/css/style.css +339 -0
  35. data/doc/file.README.html +95 -0
  36. data/doc/file_list.html +60 -0
  37. data/doc/frames.html +26 -0
  38. data/doc/index.html +95 -0
  39. data/doc/js/app.js +219 -0
  40. data/doc/js/full_list.js +181 -0
  41. data/doc/js/jquery.js +4 -0
  42. data/doc/method_list.html +849 -0
  43. data/doc/top-level-namespace.html +135 -0
  44. data/examples/bar_chart/bar_chart.rb +268 -0
  45. data/examples/bar_plot.rb +96 -0
  46. data/examples/charts/area.rb +25 -0
  47. data/examples/charts/area_script.rb +69 -0
  48. data/examples/charts/env.rb +8 -0
  49. data/examples/charts/monthly-move.csv +6725 -0
  50. data/examples/charts/morley.csv +101 -0
  51. data/examples/charts/morley2.csv +81 -0
  52. data/examples/charts/morley3.csv +121 -0
  53. data/examples/d3_tutorial.rb +98 -0
  54. data/examples/sc_plot.rb +57 -0
  55. data/examples/scatterplot/axes.rb +111 -0
  56. data/examples/scatterplot/scatterplot.rb +221 -0
  57. data/examples/us_states/map.rb +90 -0
  58. data/examples/us_states/us-ag-productivity2004.csv +49 -0
  59. data/examples/us_states/us-cities.csv +51 -0
  60. data/examples/util/linear_scale.rb +83 -0
  61. data/examples/util/ordinal_scale.rb +72 -0
  62. data/init.rb +39 -0
  63. data/lib/jx/array_handler.js +70 -0
  64. data/lib/jx/callback.rb +255 -0
  65. data/lib/jx/hash_handler.js +87 -0
  66. data/lib/jx/irbobject.rb +121 -0
  67. data/lib/jx/js.rb +442 -0
  68. data/lib/jx/js_array.rb +31 -0
  69. data/lib/jx/js_hash.rb +76 -0
  70. data/lib/jx/js_init.rb +62 -0
  71. data/lib/jx/jsarray.rb +66 -0
  72. data/lib/jx/jsfunction.rb +73 -0
  73. data/lib/jx/jsobject.rb +188 -0
  74. data/lib/jx/jsstyle_sheet.rb +231 -0
  75. data/lib/jx/jsundefined.rb +46 -0
  76. data/lib/jx/proxy_array.rb +62 -0
  77. data/lib/jx/rbobject.rb +80 -0
  78. data/lib/jx/ruby_proxy.js +176 -0
  79. data/lib/jx/ruby_rich.js +70 -0
  80. data/lib/jx/sol.rb +109 -0
  81. data/lib/mdarray-sol.rb +34 -0
  82. data/lib/mdarray/jsmdarray.rb +39 -0
  83. data/lib/ruby_rich/bootstrap.rb +230 -0
  84. data/lib/ruby_rich/config.html +22 -0
  85. data/lib/ruby_rich/dashboard.rb +299 -0
  86. data/lib/ruby_rich/ruby_rich.rb +120 -0
  87. data/lib/sol/bar_chart.rb +35 -0
  88. data/lib/sol/base_chart.rb +148 -0
  89. data/lib/sol/chart.rb +138 -0
  90. data/lib/sol/coordinate_chart.rb +128 -0
  91. data/lib/sol/interval.rb +156 -0
  92. data/lib/sol/line_chart.rb +58 -0
  93. data/lib/sol/margins.rb +52 -0
  94. data/lib/sol/scale.rb +212 -0
  95. data/lib/sol/stack.rb +44 -0
  96. data/node_modules/bootstrap/Gruntfile.js +533 -0
  97. data/node_modules/bootstrap/dist/js/bootstrap.js +2363 -0
  98. data/node_modules/bootstrap/dist/js/bootstrap.min.js +7 -0
  99. data/node_modules/bootstrap/dist/js/npm.js +13 -0
  100. data/node_modules/bootstrap/grunt/bs-commonjs-generator.js +30 -0
  101. data/node_modules/bootstrap/grunt/bs-glyphicons-data-generator.js +42 -0
  102. data/node_modules/bootstrap/grunt/bs-lessdoc-parser.js +237 -0
  103. data/node_modules/bootstrap/grunt/bs-raw-files-generator.js +44 -0
  104. data/node_modules/bootstrap/js/affix.js +162 -0
  105. data/node_modules/bootstrap/js/alert.js +94 -0
  106. data/node_modules/bootstrap/js/button.js +120 -0
  107. data/node_modules/bootstrap/js/carousel.js +237 -0
  108. data/node_modules/bootstrap/js/collapse.js +211 -0
  109. data/node_modules/bootstrap/js/dropdown.js +165 -0
  110. data/node_modules/bootstrap/js/modal.js +337 -0
  111. data/node_modules/bootstrap/js/popover.js +108 -0
  112. data/node_modules/bootstrap/js/scrollspy.js +172 -0
  113. data/node_modules/bootstrap/js/tab.js +155 -0
  114. data/node_modules/bootstrap/js/tooltip.js +514 -0
  115. data/node_modules/bootstrap/js/transition.js +59 -0
  116. data/node_modules/chai/chai.js +6142 -0
  117. data/node_modules/chai/index.js +1 -0
  118. data/node_modules/chai/karma.conf.js +28 -0
  119. data/node_modules/chai/karma.sauce.js +41 -0
  120. data/node_modules/chai/lib/chai.js +93 -0
  121. data/node_modules/chai/lib/chai/assertion.js +131 -0
  122. data/node_modules/chai/lib/chai/config.js +55 -0
  123. data/node_modules/chai/lib/chai/core/assertions.js +1860 -0
  124. data/node_modules/chai/lib/chai/interface/assert.js +1645 -0
  125. data/node_modules/chai/lib/chai/interface/expect.js +34 -0
  126. data/node_modules/chai/lib/chai/interface/should.js +201 -0
  127. data/node_modules/chai/lib/chai/utils/addChainableMethod.js +112 -0
  128. data/node_modules/chai/lib/chai/utils/addMethod.js +44 -0
  129. data/node_modules/chai/lib/chai/utils/addProperty.js +48 -0
  130. data/node_modules/chai/lib/chai/utils/expectTypes.js +42 -0
  131. data/node_modules/chai/lib/chai/utils/flag.js +33 -0
  132. data/node_modules/chai/lib/chai/utils/getActual.js +20 -0
  133. data/node_modules/chai/lib/chai/utils/getEnumerableProperties.js +26 -0
  134. data/node_modules/chai/lib/chai/utils/getMessage.js +51 -0
  135. data/node_modules/chai/lib/chai/utils/getName.js +22 -0
  136. data/node_modules/chai/lib/chai/utils/getPathInfo.js +111 -0
  137. data/node_modules/chai/lib/chai/utils/getPathValue.js +43 -0
  138. data/node_modules/chai/lib/chai/utils/getProperties.js +36 -0
  139. data/node_modules/chai/lib/chai/utils/hasProperty.js +64 -0
  140. data/node_modules/chai/lib/chai/utils/index.js +130 -0
  141. data/node_modules/chai/lib/chai/utils/inspect.js +335 -0
  142. data/node_modules/chai/lib/chai/utils/objDisplay.js +50 -0
  143. data/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js +54 -0
  144. data/node_modules/chai/lib/chai/utils/overwriteMethod.js +52 -0
  145. data/node_modules/chai/lib/chai/utils/overwriteProperty.js +55 -0
  146. data/node_modules/chai/lib/chai/utils/test.js +28 -0
  147. data/node_modules/chai/lib/chai/utils/transferFlags.js +45 -0
  148. data/node_modules/chai/node_modules/assertion-error/index.js +116 -0
  149. data/node_modules/chai/node_modules/deep-eql/index.js +1 -0
  150. data/node_modules/chai/node_modules/deep-eql/karma.conf.js +20 -0
  151. data/node_modules/chai/node_modules/deep-eql/lib/eql.js +257 -0
  152. data/node_modules/chai/node_modules/deep-eql/node_modules/type-detect/index.js +1 -0
  153. data/node_modules/chai/node_modules/deep-eql/node_modules/type-detect/lib/type.js +142 -0
  154. data/node_modules/chai/node_modules/type-detect/index.js +1 -0
  155. data/node_modules/chai/node_modules/type-detect/lib/type.js +134 -0
  156. data/node_modules/chai/sauce.browsers.js +128 -0
  157. data/node_modules/dc/Gruntfile.js +437 -0
  158. data/node_modules/dc/dc.js +10477 -0
  159. data/node_modules/dc/dc.min.js +23 -0
  160. data/node_modules/dc/docs/coverage.js +203 -0
  161. data/node_modules/dc/grunt/format-file-list.js +33 -0
  162. data/node_modules/dc/index.js +5 -0
  163. data/node_modules/dc/node_modules/crossfilter2/crossfilter.js +1401 -0
  164. data/node_modules/dc/node_modules/crossfilter2/crossfilter.min.js +1 -0
  165. data/node_modules/dc/node_modules/crossfilter2/index.js +1 -0
  166. data/node_modules/dc/node_modules/crossfilter2/src/array.js +46 -0
  167. data/node_modules/dc/node_modules/crossfilter2/src/bisect.js +44 -0
  168. data/node_modules/dc/node_modules/crossfilter2/src/crossfilter.js +872 -0
  169. data/node_modules/dc/node_modules/crossfilter2/src/filter.js +19 -0
  170. data/node_modules/dc/node_modules/crossfilter2/src/heap.js +44 -0
  171. data/node_modules/dc/node_modules/crossfilter2/src/heapselect.js +36 -0
  172. data/node_modules/dc/node_modules/crossfilter2/src/identity.js +3 -0
  173. data/node_modules/dc/node_modules/crossfilter2/src/insertionsort.js +18 -0
  174. data/node_modules/dc/node_modules/crossfilter2/src/null.js +3 -0
  175. data/node_modules/dc/node_modules/crossfilter2/src/permute.js +8 -0
  176. data/node_modules/dc/node_modules/crossfilter2/src/quicksort.js +283 -0
  177. data/node_modules/dc/node_modules/crossfilter2/src/reduce.js +19 -0
  178. data/node_modules/dc/node_modules/crossfilter2/src/zero.js +3 -0
  179. data/node_modules/dc/node_modules/d3/d3.js +9554 -0
  180. data/node_modules/dc/node_modules/d3/d3.min.js +5 -0
  181. data/node_modules/dc/node_modules/d3/package.js +13 -0
  182. data/node_modules/dc/node_modules/d3/src/arrays/ascending.js +5 -0
  183. data/node_modules/dc/node_modules/d3/src/arrays/bisect.js +36 -0
  184. data/node_modules/dc/node_modules/d3/src/arrays/descending.js +3 -0
  185. data/node_modules/dc/node_modules/d3/src/arrays/deviation.js +6 -0
  186. data/node_modules/dc/node_modules/d3/src/arrays/entries.js +5 -0
  187. data/node_modules/dc/node_modules/d3/src/arrays/extent.js +21 -0
  188. data/node_modules/dc/node_modules/d3/src/arrays/index.js +25 -0
  189. data/node_modules/dc/node_modules/d3/src/arrays/keys.js +5 -0
  190. data/node_modules/dc/node_modules/d3/src/arrays/map.js +84 -0
  191. data/node_modules/dc/node_modules/d3/src/arrays/max.js +14 -0
  192. data/node_modules/dc/node_modules/d3/src/arrays/mean.js +15 -0
  193. data/node_modules/dc/node_modules/d3/src/arrays/median.js +16 -0
  194. data/node_modules/dc/node_modules/d3/src/arrays/merge.js +21 -0
  195. data/node_modules/dc/node_modules/d3/src/arrays/min.js +14 -0
  196. data/node_modules/dc/node_modules/d3/src/arrays/nest.js +97 -0
  197. data/node_modules/dc/node_modules/d3/src/arrays/pairs.js +5 -0
  198. data/node_modules/dc/node_modules/d3/src/arrays/permute.js +5 -0
  199. data/node_modules/dc/node_modules/d3/src/arrays/quantile.js +8 -0
  200. data/node_modules/dc/node_modules/d3/src/arrays/range.js +26 -0
  201. data/node_modules/dc/node_modules/d3/src/arrays/set.js +27 -0
  202. data/node_modules/dc/node_modules/d3/src/arrays/shuffle.js +9 -0
  203. data/node_modules/dc/node_modules/d3/src/arrays/sum.js +14 -0
  204. data/node_modules/dc/node_modules/d3/src/arrays/transpose.js +15 -0
  205. data/node_modules/dc/node_modules/d3/src/arrays/values.js +5 -0
  206. data/node_modules/dc/node_modules/d3/src/arrays/variance.js +29 -0
  207. data/node_modules/dc/node_modules/d3/src/arrays/zip.js +5 -0
  208. data/node_modules/dc/node_modules/d3/src/behavior/behavior.js +1 -0
  209. data/node_modules/dc/node_modules/d3/src/behavior/drag.js +88 -0
  210. data/node_modules/dc/node_modules/d3/src/behavior/index.js +3 -0
  211. data/node_modules/dc/node_modules/d3/src/behavior/zoom.js +348 -0
  212. data/node_modules/dc/node_modules/d3/src/color/color.js +7 -0
  213. data/node_modules/dc/node_modules/d3/src/color/hcl.js +34 -0
  214. data/node_modules/dc/node_modules/d3/src/color/hsl.js +56 -0
  215. data/node_modules/dc/node_modules/d3/src/color/index.js +6 -0
  216. data/node_modules/dc/node_modules/d3/src/color/lab.js +60 -0
  217. data/node_modules/dc/node_modules/d3/src/color/rgb.js +301 -0
  218. data/node_modules/dc/node_modules/d3/src/color/xyz.js +7 -0
  219. data/node_modules/dc/node_modules/d3/src/compat/array.js +15 -0
  220. data/node_modules/dc/node_modules/d3/src/compat/date.js +3 -0
  221. data/node_modules/dc/node_modules/d3/src/compat/index.js +3 -0
  222. data/node_modules/dc/node_modules/d3/src/compat/style.js +23 -0
  223. data/node_modules/dc/node_modules/d3/src/core/array.js +2 -0
  224. data/node_modules/dc/node_modules/d3/src/core/class.js +8 -0
  225. data/node_modules/dc/node_modules/d3/src/core/document.js +15 -0
  226. data/node_modules/dc/node_modules/d3/src/core/functor.js +5 -0
  227. data/node_modules/dc/node_modules/d3/src/core/identity.js +3 -0
  228. data/node_modules/dc/node_modules/d3/src/core/index.js +3 -0
  229. data/node_modules/dc/node_modules/d3/src/core/noop.js +1 -0
  230. data/node_modules/dc/node_modules/d3/src/core/ns.js +18 -0
  231. data/node_modules/dc/node_modules/d3/src/core/rebind.js +16 -0
  232. data/node_modules/dc/node_modules/d3/src/core/source.js +3 -0
  233. data/node_modules/dc/node_modules/d3/src/core/subclass.js +11 -0
  234. data/node_modules/dc/node_modules/d3/src/core/target.js +3 -0
  235. data/node_modules/dc/node_modules/d3/src/core/true.js +3 -0
  236. data/node_modules/dc/node_modules/d3/src/core/vendor.js +10 -0
  237. data/node_modules/dc/node_modules/d3/src/core/zero.js +3 -0
  238. data/node_modules/dc/node_modules/d3/src/d3.js +23 -0
  239. data/node_modules/dc/node_modules/d3/src/dsv/csv.js +3 -0
  240. data/node_modules/dc/node_modules/d3/src/dsv/dsv.js +136 -0
  241. data/node_modules/dc/node_modules/d3/src/dsv/index.js +3 -0
  242. data/node_modules/dc/node_modules/d3/src/dsv/tsv.js +3 -0
  243. data/node_modules/dc/node_modules/d3/src/end.js +4 -0
  244. data/node_modules/dc/node_modules/d3/src/event/dispatch.js +69 -0
  245. data/node_modules/dc/node_modules/d3/src/event/drag.js +36 -0
  246. data/node_modules/dc/node_modules/d3/src/event/event.js +50 -0
  247. data/node_modules/dc/node_modules/d3/src/event/index.js +6 -0
  248. data/node_modules/dc/node_modules/d3/src/event/mouse.js +39 -0
  249. data/node_modules/dc/node_modules/d3/src/event/timer.js +82 -0
  250. data/node_modules/dc/node_modules/d3/src/event/touch.js +11 -0
  251. data/node_modules/dc/node_modules/d3/src/event/touches.js +12 -0
  252. data/node_modules/dc/node_modules/d3/src/format/collapse.js +3 -0
  253. data/node_modules/dc/node_modules/d3/src/format/format.js +3 -0
  254. data/node_modules/dc/node_modules/d3/src/format/formatPrefix.js +24 -0
  255. data/node_modules/dc/node_modules/d3/src/format/index.js +4 -0
  256. data/node_modules/dc/node_modules/d3/src/format/precision.js +3 -0
  257. data/node_modules/dc/node_modules/d3/src/format/requote.js +5 -0
  258. data/node_modules/dc/node_modules/d3/src/format/round.js +5 -0
  259. data/node_modules/dc/node_modules/d3/src/geo/albers-usa.js +129 -0
  260. data/node_modules/dc/node_modules/d3/src/geo/albers.js +11 -0
  261. data/node_modules/dc/node_modules/d3/src/geo/area.js +69 -0
  262. data/node_modules/dc/node_modules/d3/src/geo/azimuthal-equal-area.js +12 -0
  263. data/node_modules/dc/node_modules/d3/src/geo/azimuthal-equidistant.js +13 -0
  264. data/node_modules/dc/node_modules/d3/src/geo/azimuthal.js +25 -0
  265. data/node_modules/dc/node_modules/d3/src/geo/bounds.js +168 -0
  266. data/node_modules/dc/node_modules/d3/src/geo/cartesian.js +47 -0
  267. data/node_modules/dc/node_modules/d3/src/geo/centroid.js +149 -0
  268. data/node_modules/dc/node_modules/d3/src/geo/circle.js +81 -0
  269. data/node_modules/dc/node_modules/d3/src/geo/clip-antimeridian.js +95 -0
  270. data/node_modules/dc/node_modules/d3/src/geo/clip-circle.js +178 -0
  271. data/node_modules/dc/node_modules/d3/src/geo/clip-extent.js +196 -0
  272. data/node_modules/dc/node_modules/d3/src/geo/clip-polygon.js +104 -0
  273. data/node_modules/dc/node_modules/d3/src/geo/clip.js +149 -0
  274. data/node_modules/dc/node_modules/d3/src/geo/compose.js +12 -0
  275. data/node_modules/dc/node_modules/d3/src/geo/conic-conformal.js +39 -0
  276. data/node_modules/dc/node_modules/d3/src/geo/conic-equal-area.js +33 -0
  277. data/node_modules/dc/node_modules/d3/src/geo/conic-equidistant.js +36 -0
  278. data/node_modules/dc/node_modules/d3/src/geo/conic.js +16 -0
  279. data/node_modules/dc/node_modules/d3/src/geo/distance.js +13 -0
  280. data/node_modules/dc/node_modules/d3/src/geo/equirectangular.js +10 -0
  281. data/node_modules/dc/node_modules/d3/src/geo/geo.js +1 -0
  282. data/node_modules/dc/node_modules/d3/src/geo/gnomonic.js +12 -0
  283. data/node_modules/dc/node_modules/d3/src/geo/graticule.js +103 -0
  284. data/node_modules/dc/node_modules/d3/src/geo/greatArc.js +42 -0
  285. data/node_modules/dc/node_modules/d3/src/geo/index.js +33 -0
  286. data/node_modules/dc/node_modules/d3/src/geo/interpolate.js +38 -0
  287. data/node_modules/dc/node_modules/d3/src/geo/length.js +44 -0
  288. data/node_modules/dc/node_modules/d3/src/geo/mercator.js +48 -0
  289. data/node_modules/dc/node_modules/d3/src/geo/orthographic.js +12 -0
  290. data/node_modules/dc/node_modules/d3/src/geo/path-area.js +41 -0
  291. data/node_modules/dc/node_modules/d3/src/geo/path-bounds.js +21 -0
  292. data/node_modules/dc/node_modules/d3/src/geo/path-buffer.js +59 -0
  293. data/node_modules/dc/node_modules/d3/src/geo/path-centroid.js +78 -0
  294. data/node_modules/dc/node_modules/d3/src/geo/path-context.js +49 -0
  295. data/node_modules/dc/node_modules/d3/src/geo/path.js +87 -0
  296. data/node_modules/dc/node_modules/d3/src/geo/point-in-polygon.js +71 -0
  297. data/node_modules/dc/node_modules/d3/src/geo/projection.js +121 -0
  298. data/node_modules/dc/node_modules/d3/src/geo/resample.js +109 -0
  299. data/node_modules/dc/node_modules/d3/src/geo/rotation.js +79 -0
  300. data/node_modules/dc/node_modules/d3/src/geo/spherical.js +13 -0
  301. data/node_modules/dc/node_modules/d3/src/geo/stereographic.js +12 -0
  302. data/node_modules/dc/node_modules/d3/src/geo/stream.js +71 -0
  303. data/node_modules/dc/node_modules/d3/src/geo/transform.js +36 -0
  304. data/node_modules/dc/node_modules/d3/src/geo/transverse-mercator.js +31 -0
  305. data/node_modules/dc/node_modules/d3/src/geom/clip-line.js +66 -0
  306. data/node_modules/dc/node_modules/d3/src/geom/delaunay.js +6 -0
  307. data/node_modules/dc/node_modules/d3/src/geom/geom.js +1 -0
  308. data/node_modules/dc/node_modules/d3/src/geom/hull.js +91 -0
  309. data/node_modules/dc/node_modules/d3/src/geom/index.js +6 -0
  310. data/node_modules/dc/node_modules/d3/src/geom/point.js +7 -0
  311. data/node_modules/dc/node_modules/d3/src/geom/polygon.js +105 -0
  312. data/node_modules/dc/node_modules/d3/src/geom/quadtree.js +243 -0
  313. data/node_modules/dc/node_modules/d3/src/geom/voronoi.js +110 -0
  314. data/node_modules/dc/node_modules/d3/src/geom/voronoi/beach.js +186 -0
  315. data/node_modules/dc/node_modules/d3/src/geom/voronoi/cell.js +64 -0
  316. data/node_modules/dc/node_modules/d3/src/geom/voronoi/circle.js +73 -0
  317. data/node_modules/dc/node_modules/d3/src/geom/voronoi/clip.js +80 -0
  318. data/node_modules/dc/node_modules/d3/src/geom/voronoi/edge.js +50 -0
  319. data/node_modules/dc/node_modules/d3/src/geom/voronoi/index.js +59 -0
  320. data/node_modules/dc/node_modules/d3/src/geom/voronoi/red-black.js +235 -0
  321. data/node_modules/dc/node_modules/d3/src/interpolate/array.js +19 -0
  322. data/node_modules/dc/node_modules/d3/src/interpolate/ease.js +111 -0
  323. data/node_modules/dc/node_modules/d3/src/interpolate/hcl.js +20 -0
  324. data/node_modules/dc/node_modules/d3/src/interpolate/hsl.js +20 -0
  325. data/node_modules/dc/node_modules/d3/src/interpolate/index.js +14 -0
  326. data/node_modules/dc/node_modules/d3/src/interpolate/interpolate.js +26 -0
  327. data/node_modules/dc/node_modules/d3/src/interpolate/lab.js +17 -0
  328. data/node_modules/dc/node_modules/d3/src/interpolate/number.js +6 -0
  329. data/node_modules/dc/node_modules/d3/src/interpolate/object.js +25 -0
  330. data/node_modules/dc/node_modules/d3/src/interpolate/rgb.js +20 -0
  331. data/node_modules/dc/node_modules/d3/src/interpolate/round.js +6 -0
  332. data/node_modules/dc/node_modules/d3/src/interpolate/string.js +54 -0
  333. data/node_modules/dc/node_modules/d3/src/interpolate/transform.js +59 -0
  334. data/node_modules/dc/node_modules/d3/src/interpolate/uninterpolate.js +9 -0
  335. data/node_modules/dc/node_modules/d3/src/interpolate/zoom.js +53 -0
  336. data/node_modules/dc/node_modules/d3/src/layout/bundle.js +59 -0
  337. data/node_modules/dc/node_modules/d3/src/layout/chord.js +157 -0
  338. data/node_modules/dc/node_modules/d3/src/layout/cluster.js +92 -0
  339. data/node_modules/dc/node_modules/d3/src/layout/force.js +372 -0
  340. data/node_modules/dc/node_modules/d3/src/layout/hierarchy.js +136 -0
  341. data/node_modules/dc/node_modules/d3/src/layout/histogram.js +110 -0
  342. data/node_modules/dc/node_modules/d3/src/layout/index.js +13 -0
  343. data/node_modules/dc/node_modules/d3/src/layout/layout.js +1 -0
  344. data/node_modules/dc/node_modules/d3/src/layout/pack.js +211 -0
  345. data/node_modules/dc/node_modules/d3/src/layout/partition.js +51 -0
  346. data/node_modules/dc/node_modules/d3/src/layout/pie.js +78 -0
  347. data/node_modules/dc/node_modules/d3/src/layout/stack.js +247 -0
  348. data/node_modules/dc/node_modules/d3/src/layout/tree.js +240 -0
  349. data/node_modules/dc/node_modules/d3/src/layout/treemap.js +229 -0
  350. data/node_modules/dc/node_modules/d3/src/locale/ca-ES.js +16 -0
  351. data/node_modules/dc/node_modules/d3/src/locale/de-CH.js +16 -0
  352. data/node_modules/dc/node_modules/d3/src/locale/de-DE.js +16 -0
  353. data/node_modules/dc/node_modules/d3/src/locale/en-CA.js +16 -0
  354. data/node_modules/dc/node_modules/d3/src/locale/en-GB.js +16 -0
  355. data/node_modules/dc/node_modules/d3/src/locale/en-US.js +16 -0
  356. data/node_modules/dc/node_modules/d3/src/locale/es-ES.js +16 -0
  357. data/node_modules/dc/node_modules/d3/src/locale/fi-FI.js +16 -0
  358. data/node_modules/dc/node_modules/d3/src/locale/fr-CA.js +16 -0
  359. data/node_modules/dc/node_modules/d3/src/locale/fr-FR.js +16 -0
  360. data/node_modules/dc/node_modules/d3/src/locale/he-IL.js +16 -0
  361. data/node_modules/dc/node_modules/d3/src/locale/hu-HU.js +16 -0
  362. data/node_modules/dc/node_modules/d3/src/locale/it-IT.js +16 -0
  363. data/node_modules/dc/node_modules/d3/src/locale/ja-JP.js +16 -0
  364. data/node_modules/dc/node_modules/d3/src/locale/ko-KR.js +16 -0
  365. data/node_modules/dc/node_modules/d3/src/locale/locale.js +9 -0
  366. data/node_modules/dc/node_modules/d3/src/locale/mk-MK.js +16 -0
  367. data/node_modules/dc/node_modules/d3/src/locale/nl-NL.js +16 -0
  368. data/node_modules/dc/node_modules/d3/src/locale/number-format.js +155 -0
  369. data/node_modules/dc/node_modules/d3/src/locale/pl-PL.js +16 -0
  370. data/node_modules/dc/node_modules/d3/src/locale/pt-BR.js +16 -0
  371. data/node_modules/dc/node_modules/d3/src/locale/ru-RU.js +16 -0
  372. data/node_modules/dc/node_modules/d3/src/locale/sv-SE.js +16 -0
  373. data/node_modules/dc/node_modules/d3/src/locale/time-format.js +370 -0
  374. data/node_modules/dc/node_modules/d3/src/locale/time-scale.js +0 -0
  375. data/node_modules/dc/node_modules/d3/src/locale/zh-CN.js +16 -0
  376. data/node_modules/dc/node_modules/d3/src/math/abs.js +1 -0
  377. data/node_modules/dc/node_modules/d3/src/math/adder.js +34 -0
  378. data/node_modules/dc/node_modules/d3/src/math/index.js +2 -0
  379. data/node_modules/dc/node_modules/d3/src/math/number.js +7 -0
  380. data/node_modules/dc/node_modules/d3/src/math/random.js +34 -0
  381. data/node_modules/dc/node_modules/d3/src/math/transform.js +64 -0
  382. data/node_modules/dc/node_modules/d3/src/math/trigonometry.js +44 -0
  383. data/node_modules/dc/node_modules/d3/src/scale/bilinear.js +7 -0
  384. data/node_modules/dc/node_modules/d3/src/scale/category.js +58 -0
  385. data/node_modules/dc/node_modules/d3/src/scale/identity.js +33 -0
  386. data/node_modules/dc/node_modules/d3/src/scale/index.js +11 -0
  387. data/node_modules/dc/node_modules/d3/src/scale/linear.js +160 -0
  388. data/node_modules/dc/node_modules/d3/src/scale/log.js +92 -0
  389. data/node_modules/dc/node_modules/d3/src/scale/nice.js +30 -0
  390. data/node_modules/dc/node_modules/d3/src/scale/ordinal.js +102 -0
  391. data/node_modules/dc/node_modules/d3/src/scale/polylinear.js +24 -0
  392. data/node_modules/dc/node_modules/d3/src/scale/pow.js +57 -0
  393. data/node_modules/dc/node_modules/d3/src/scale/quantile.js +55 -0
  394. data/node_modules/dc/node_modules/d3/src/scale/quantize.js +44 -0
  395. data/node_modules/dc/node_modules/d3/src/scale/scale.js +10 -0
  396. data/node_modules/dc/node_modules/d3/src/scale/sqrt.js +6 -0
  397. data/node_modules/dc/node_modules/d3/src/scale/threshold.js +36 -0
  398. data/node_modules/dc/node_modules/d3/src/selection/append.js +28 -0
  399. data/node_modules/dc/node_modules/d3/src/selection/attr.js +62 -0
  400. data/node_modules/dc/node_modules/d3/src/selection/call.js +8 -0
  401. data/node_modules/dc/node_modules/d3/src/selection/classed.js +76 -0
  402. data/node_modules/dc/node_modules/d3/src/selection/data.js +117 -0
  403. data/node_modules/dc/node_modules/d3/src/selection/datum.js +7 -0
  404. data/node_modules/dc/node_modules/d3/src/selection/each.js +16 -0
  405. data/node_modules/dc/node_modules/d3/src/selection/empty.js +5 -0
  406. data/node_modules/dc/node_modules/d3/src/selection/enter-insert.js +20 -0
  407. data/node_modules/dc/node_modules/d3/src/selection/enter-select.js +27 -0
  408. data/node_modules/dc/node_modules/d3/src/selection/enter.js +21 -0
  409. data/node_modules/dc/node_modules/d3/src/selection/filter.js +28 -0
  410. data/node_modules/dc/node_modules/d3/src/selection/html.js +10 -0
  411. data/node_modules/dc/node_modules/d3/src/selection/index.js +1 -0
  412. data/node_modules/dc/node_modules/d3/src/selection/insert.js +9 -0
  413. data/node_modules/dc/node_modules/d3/src/selection/interrupt.js +27 -0
  414. data/node_modules/dc/node_modules/d3/src/selection/node.js +11 -0
  415. data/node_modules/dc/node_modules/d3/src/selection/on.js +106 -0
  416. data/node_modules/dc/node_modules/d3/src/selection/order.js +13 -0
  417. data/node_modules/dc/node_modules/d3/src/selection/property.js +43 -0
  418. data/node_modules/dc/node_modules/d3/src/selection/remove.js +13 -0
  419. data/node_modules/dc/node_modules/d3/src/selection/select.js +32 -0
  420. data/node_modules/dc/node_modules/d3/src/selection/selectAll.js +27 -0
  421. data/node_modules/dc/node_modules/d3/src/selection/selection.js +81 -0
  422. data/node_modules/dc/node_modules/d3/src/selection/size.js +7 -0
  423. data/node_modules/dc/node_modules/d3/src/selection/sort.js +15 -0
  424. data/node_modules/dc/node_modules/d3/src/selection/style.js +59 -0
  425. data/node_modules/dc/node_modules/d3/src/selection/text.js +10 -0
  426. data/node_modules/dc/node_modules/d3/src/selection/transition.js +21 -0
  427. data/node_modules/dc/node_modules/d3/src/start.js +2 -0
  428. data/node_modules/dc/node_modules/d3/src/svg/arc.js +292 -0
  429. data/node_modules/dc/node_modules/d3/src/svg/area-radial.js +14 -0
  430. data/node_modules/dc/node_modules/d3/src/svg/area.js +121 -0
  431. data/node_modules/dc/node_modules/d3/src/svg/axis.js +160 -0
  432. data/node_modules/dc/node_modules/d3/src/svg/brush.js +429 -0
  433. data/node_modules/dc/node_modules/d3/src/svg/chord.js +90 -0
  434. data/node_modules/dc/node_modules/d3/src/svg/diagonal-radial.js +27 -0
  435. data/node_modules/dc/node_modules/d3/src/svg/diagonal.js +43 -0
  436. data/node_modules/dc/node_modules/d3/src/svg/index.js +12 -0
  437. data/node_modules/dc/node_modules/d3/src/svg/line-radial.js +27 -0
  438. data/node_modules/dc/node_modules/d3/src/svg/line.js +432 -0
  439. data/node_modules/dc/node_modules/d3/src/svg/svg.js +1 -0
  440. data/node_modules/dc/node_modules/d3/src/svg/symbol.js +105 -0
  441. data/node_modules/dc/node_modules/d3/src/time/day.js +21 -0
  442. data/node_modules/dc/node_modules/d3/src/time/format-iso.js +19 -0
  443. data/node_modules/dc/node_modules/d3/src/time/format-utc.js +3 -0
  444. data/node_modules/dc/node_modules/d3/src/time/format.js +4 -0
  445. data/node_modules/dc/node_modules/d3/src/time/hour.js +14 -0
  446. data/node_modules/dc/node_modules/d3/src/time/index.js +14 -0
  447. data/node_modules/dc/node_modules/d3/src/time/interval.js +71 -0
  448. data/node_modules/dc/node_modules/d3/src/time/minute.js +13 -0
  449. data/node_modules/dc/node_modules/d3/src/time/month.js +16 -0
  450. data/node_modules/dc/node_modules/d3/src/time/scale-utc.js +25 -0
  451. data/node_modules/dc/node_modules/d3/src/time/scale.js +155 -0
  452. data/node_modules/dc/node_modules/d3/src/time/second.js +13 -0
  453. data/node_modules/dc/node_modules/d3/src/time/time.js +33 -0
  454. data/node_modules/dc/node_modules/d3/src/time/week.js +31 -0
  455. data/node_modules/dc/node_modules/d3/src/time/year.js +16 -0
  456. data/node_modules/dc/node_modules/d3/src/transition/attr.js +58 -0
  457. data/node_modules/dc/node_modules/d3/src/transition/delay.js +10 -0
  458. data/node_modules/dc/node_modules/d3/src/transition/duration.js +10 -0
  459. data/node_modules/dc/node_modules/d3/src/transition/each.js +26 -0
  460. data/node_modules/dc/node_modules/d3/src/transition/ease.js +10 -0
  461. data/node_modules/dc/node_modules/d3/src/transition/filter.js +22 -0
  462. data/node_modules/dc/node_modules/d3/src/transition/index.js +1 -0
  463. data/node_modules/dc/node_modules/d3/src/transition/remove.js +9 -0
  464. data/node_modules/dc/node_modules/d3/src/transition/select.js +28 -0
  465. data/node_modules/dc/node_modules/d3/src/transition/selectAll.js +31 -0
  466. data/node_modules/dc/node_modules/d3/src/transition/style.js +53 -0
  467. data/node_modules/dc/node_modules/d3/src/transition/subtransition.js +25 -0
  468. data/node_modules/dc/node_modules/d3/src/transition/text.js +11 -0
  469. data/node_modules/dc/node_modules/d3/src/transition/transition.js +161 -0
  470. data/node_modules/dc/node_modules/d3/src/transition/tween.js +17 -0
  471. data/node_modules/dc/node_modules/d3/src/xhr/html.js +12 -0
  472. data/node_modules/dc/node_modules/d3/src/xhr/index.js +5 -0
  473. data/node_modules/dc/node_modules/d3/src/xhr/json.js +9 -0
  474. data/node_modules/dc/node_modules/d3/src/xhr/text.js +5 -0
  475. data/node_modules/dc/node_modules/d3/src/xhr/xhr.js +126 -0
  476. data/node_modules/dc/node_modules/d3/src/xhr/xml.js +5 -0
  477. data/node_modules/dc/regression/inject-serializer.js +6 -0
  478. data/node_modules/dc/regression/stock-regression-test.js +140 -0
  479. data/node_modules/dc/spec/bar-chart-spec.js +1230 -0
  480. data/node_modules/dc/spec/base-mixin-spec.js +611 -0
  481. data/node_modules/dc/spec/biggish-data-spec.js +136 -0
  482. data/node_modules/dc/spec/box-plot-spec.js +211 -0
  483. data/node_modules/dc/spec/bubble-chart-spec.js +450 -0
  484. data/node_modules/dc/spec/bubble-overlay-spec.js +102 -0
  485. data/node_modules/dc/spec/color-spec.js +89 -0
  486. data/node_modules/dc/spec/composite-chart-spec.js +691 -0
  487. data/node_modules/dc/spec/coordinate-grid-chart-spec.js +962 -0
  488. data/node_modules/dc/spec/core-spec.js +301 -0
  489. data/node_modules/dc/spec/data-addition-spec.js +122 -0
  490. data/node_modules/dc/spec/data-count-spec.js +180 -0
  491. data/node_modules/dc/spec/data-grid-spec.js +124 -0
  492. data/node_modules/dc/spec/data-table-spec.js +251 -0
  493. data/node_modules/dc/spec/event-spec.js +41 -0
  494. data/node_modules/dc/spec/filter-dates-spec.js +92 -0
  495. data/node_modules/dc/spec/filters-spec.js +140 -0
  496. data/node_modules/dc/spec/geo-choropleth-chart-spec.js +225 -0
  497. data/node_modules/dc/spec/heatmap-spec.js +363 -0
  498. data/node_modules/dc/spec/helpers/custom_matchers.js +213 -0
  499. data/node_modules/dc/spec/helpers/fixtures.js +81 -0
  500. data/node_modules/dc/spec/helpers/geoFixtures.js +113 -0
  501. data/node_modules/dc/spec/helpers/load-jsreporter.js +37 -0
  502. data/node_modules/dc/spec/helpers/spec-helper.js +53 -0
  503. data/node_modules/dc/spec/legend-spec.js +266 -0
  504. data/node_modules/dc/spec/line-chart-spec.js +709 -0
  505. data/node_modules/dc/spec/logger-spec.js +80 -0
  506. data/node_modules/dc/spec/number-display-spec.js +168 -0
  507. data/node_modules/dc/spec/pie-chart-spec.js +677 -0
  508. data/node_modules/dc/spec/row-chart-spec.js +362 -0
  509. data/node_modules/dc/spec/scatter-plot-spec.js +336 -0
  510. data/node_modules/dc/spec/series-chart-spec.js +133 -0
  511. data/node_modules/dc/spec/utils-spec.js +110 -0
  512. data/node_modules/dc/src/banner.js +2 -0
  513. data/node_modules/dc/src/bar-chart.js +374 -0
  514. data/node_modules/dc/src/base-mixin.js +1478 -0
  515. data/node_modules/dc/src/box-plot.js +240 -0
  516. data/node_modules/dc/src/bubble-chart.js +177 -0
  517. data/node_modules/dc/src/bubble-mixin.js +244 -0
  518. data/node_modules/dc/src/bubble-overlay.js +207 -0
  519. data/node_modules/dc/src/cap-mixin.js +151 -0
  520. data/node_modules/dc/src/color-mixin.js +172 -0
  521. data/node_modules/dc/src/composite-chart.js +544 -0
  522. data/node_modules/dc/src/coordinate-grid-mixin.js +1300 -0
  523. data/node_modules/dc/src/core.js +425 -0
  524. data/node_modules/dc/src/d3.box.js +317 -0
  525. data/node_modules/dc/src/data-count.js +110 -0
  526. data/node_modules/dc/src/data-grid.js +243 -0
  527. data/node_modules/dc/src/data-table.js +419 -0
  528. data/node_modules/dc/src/errors.js +28 -0
  529. data/node_modules/dc/src/events.js +37 -0
  530. data/node_modules/dc/src/filters.js +124 -0
  531. data/node_modules/dc/src/footer.js +35 -0
  532. data/node_modules/dc/src/geo-choropleth-chart.js +279 -0
  533. data/node_modules/dc/src/heatmap.js +378 -0
  534. data/node_modules/dc/src/legend.js +277 -0
  535. data/node_modules/dc/src/line-chart.js +504 -0
  536. data/node_modules/dc/src/logger.js +40 -0
  537. data/node_modules/dc/src/margin-mixin.js +44 -0
  538. data/node_modules/dc/src/number-display.js +141 -0
  539. data/node_modules/dc/src/pie-chart.js +571 -0
  540. data/node_modules/dc/src/row-chart.js +425 -0
  541. data/node_modules/dc/src/scatter-plot.js +338 -0
  542. data/node_modules/dc/src/series-chart.js +192 -0
  543. data/node_modules/dc/src/stack-mixin.js +319 -0
  544. data/node_modules/dc/src/utils.js +290 -0
  545. data/node_modules/dc/web/docs/html/scripts/docstrap.lib.js +11 -0
  546. data/node_modules/dc/web/docs/html/scripts/fulltext-search-ui.js +89 -0
  547. data/node_modules/dc/web/docs/html/scripts/fulltext-search.js +36 -0
  548. data/node_modules/dc/web/docs/html/scripts/lunr.min.js +7 -0
  549. data/node_modules/dc/web/docs/html/scripts/prettify/jquery.min.js +6 -0
  550. data/node_modules/dc/web/docs/html/scripts/prettify/lang-css.js +21 -0
  551. data/node_modules/dc/web/docs/html/scripts/prettify/prettify.js +496 -0
  552. data/node_modules/dc/web/docs/html/scripts/sunlight.js +1157 -0
  553. data/node_modules/dc/web/docs/html/scripts/toc.js +203 -0
  554. data/node_modules/dc/web/ep/list.js +106 -0
  555. data/node_modules/dc/web/examples/lysenko-interval-tree.js +447 -0
  556. data/node_modules/dc/web/highlighter/shAutoloader.js +17 -0
  557. data/node_modules/dc/web/highlighter/shBrushJScript.js +52 -0
  558. data/node_modules/dc/web/highlighter/shBrushXml.js +69 -0
  559. data/node_modules/dc/web/highlighter/shCore.js +17 -0
  560. data/node_modules/dc/web/js/colorbrewer.js +1 -0
  561. data/node_modules/dc/web/js/crossfilter.js +1401 -0
  562. data/node_modules/dc/web/js/d3.js +9554 -0
  563. data/node_modules/dc/web/js/dc.js +10477 -0
  564. data/node_modules/dc/web/js/dc.min.js +23 -0
  565. data/node_modules/dc/web/js/env-data.js +218 -0
  566. data/node_modules/dc/web/js/jasmine-jsreporter.js +394 -0
  567. data/node_modules/dc/web/stock.js +685 -0
  568. data/node_modules/dc/web/transitions/transition-test.js +45 -0
  569. data/node_modules/jquery/dist/jquery.js +9814 -0
  570. data/node_modules/jquery/dist/jquery.min.js +4 -0
  571. data/node_modules/jquery/external/sizzle/dist/sizzle.js +2143 -0
  572. data/node_modules/jquery/external/sizzle/dist/sizzle.min.js +3 -0
  573. data/node_modules/jquery/src/ajax.js +845 -0
  574. data/node_modules/jquery/src/ajax/jsonp.js +100 -0
  575. data/node_modules/jquery/src/ajax/load.js +83 -0
  576. data/node_modules/jquery/src/ajax/parseJSON.js +13 -0
  577. data/node_modules/jquery/src/ajax/parseXML.js +27 -0
  578. data/node_modules/jquery/src/ajax/script.js +68 -0
  579. data/node_modules/jquery/src/ajax/var/location.js +3 -0
  580. data/node_modules/jquery/src/ajax/var/nonce.js +5 -0
  581. data/node_modules/jquery/src/ajax/var/rquery.js +3 -0
  582. data/node_modules/jquery/src/ajax/xhr.js +167 -0
  583. data/node_modules/jquery/src/attributes.js +11 -0
  584. data/node_modules/jquery/src/attributes/attr.js +142 -0
  585. data/node_modules/jquery/src/attributes/classes.js +177 -0
  586. data/node_modules/jquery/src/attributes/prop.js +125 -0
  587. data/node_modules/jquery/src/attributes/support.js +36 -0
  588. data/node_modules/jquery/src/attributes/val.js +177 -0
  589. data/node_modules/jquery/src/callbacks.js +232 -0
  590. data/node_modules/jquery/src/core.js +494 -0
  591. data/node_modules/jquery/src/core/access.js +65 -0
  592. data/node_modules/jquery/src/core/init.js +134 -0
  593. data/node_modules/jquery/src/core/parseHTML.js +41 -0
  594. data/node_modules/jquery/src/core/ready.js +103 -0
  595. data/node_modules/jquery/src/core/var/rsingleTag.js +5 -0
  596. data/node_modules/jquery/src/css.js +502 -0
  597. data/node_modules/jquery/src/css/addGetHookIf.js +24 -0
  598. data/node_modules/jquery/src/css/adjustCSS.js +65 -0
  599. data/node_modules/jquery/src/css/curCSS.js +60 -0
  600. data/node_modules/jquery/src/css/defaultDisplay.js +72 -0
  601. data/node_modules/jquery/src/css/hiddenVisibleSelectors.js +18 -0
  602. data/node_modules/jquery/src/css/showHide.js +48 -0
  603. data/node_modules/jquery/src/css/support.js +121 -0
  604. data/node_modules/jquery/src/css/var/cssExpand.js +3 -0
  605. data/node_modules/jquery/src/css/var/getStyles.js +15 -0
  606. data/node_modules/jquery/src/css/var/isHidden.js +16 -0
  607. data/node_modules/jquery/src/css/var/rmargin.js +3 -0
  608. data/node_modules/jquery/src/css/var/rnumnonpx.js +5 -0
  609. data/node_modules/jquery/src/css/var/swap.js +24 -0
  610. data/node_modules/jquery/src/data.js +187 -0
  611. data/node_modules/jquery/src/data/Data.js +200 -0
  612. data/node_modules/jquery/src/data/var/acceptData.js +18 -0
  613. data/node_modules/jquery/src/data/var/dataPriv.js +5 -0
  614. data/node_modules/jquery/src/data/var/dataUser.js +5 -0
  615. data/node_modules/jquery/src/deferred.js +158 -0
  616. data/node_modules/jquery/src/deprecated.js +32 -0
  617. data/node_modules/jquery/src/dimensions.js +54 -0
  618. data/node_modules/jquery/src/effects.js +629 -0
  619. data/node_modules/jquery/src/effects/Tween.js +121 -0
  620. data/node_modules/jquery/src/effects/animatedSelector.js +13 -0
  621. data/node_modules/jquery/src/event.js +711 -0
  622. data/node_modules/jquery/src/event/ajax.js +20 -0
  623. data/node_modules/jquery/src/event/alias.js +27 -0
  624. data/node_modules/jquery/src/event/focusin.js +53 -0
  625. data/node_modules/jquery/src/event/support.js +9 -0
  626. data/node_modules/jquery/src/event/trigger.js +183 -0
  627. data/node_modules/jquery/src/exports/amd.js +24 -0
  628. data/node_modules/jquery/src/exports/global.js +26 -0
  629. data/node_modules/jquery/src/intro.js +44 -0
  630. data/node_modules/jquery/src/jquery.js +37 -0
  631. data/node_modules/jquery/src/manipulation.js +481 -0
  632. data/node_modules/jquery/src/manipulation/_evalUrl.js +20 -0
  633. data/node_modules/jquery/src/manipulation/buildFragment.js +102 -0
  634. data/node_modules/jquery/src/manipulation/getAll.js +21 -0
  635. data/node_modules/jquery/src/manipulation/setGlobalEval.js +20 -0
  636. data/node_modules/jquery/src/manipulation/support.js +33 -0
  637. data/node_modules/jquery/src/manipulation/var/rcheckableType.js +3 -0
  638. data/node_modules/jquery/src/manipulation/var/rscriptType.js +3 -0
  639. data/node_modules/jquery/src/manipulation/var/rtagName.js +3 -0
  640. data/node_modules/jquery/src/manipulation/wrapMap.js +27 -0
  641. data/node_modules/jquery/src/offset.js +218 -0
  642. data/node_modules/jquery/src/outro.js +2 -0
  643. data/node_modules/jquery/src/queue.js +143 -0
  644. data/node_modules/jquery/src/queue/delay.js +22 -0
  645. data/node_modules/jquery/src/selector-native.js +211 -0
  646. data/node_modules/jquery/src/selector-sizzle.js +14 -0
  647. data/node_modules/jquery/src/selector.js +1 -0
  648. data/node_modules/jquery/src/serialize.js +125 -0
  649. data/node_modules/jquery/src/traversing.js +175 -0
  650. data/node_modules/jquery/src/traversing/findFilter.js +100 -0
  651. data/node_modules/jquery/src/traversing/var/dir.js +20 -0
  652. data/node_modules/jquery/src/traversing/var/rneedsContext.js +6 -0
  653. data/node_modules/jquery/src/traversing/var/siblings.js +15 -0
  654. data/node_modules/jquery/src/var/arr.js +3 -0
  655. data/node_modules/jquery/src/var/class2type.js +5 -0
  656. data/node_modules/jquery/src/var/concat.js +5 -0
  657. data/node_modules/jquery/src/var/document.js +3 -0
  658. data/node_modules/jquery/src/var/documentElement.js +5 -0
  659. data/node_modules/jquery/src/var/hasOwn.js +5 -0
  660. data/node_modules/jquery/src/var/indexOf.js +5 -0
  661. data/node_modules/jquery/src/var/pnum.js +3 -0
  662. data/node_modules/jquery/src/var/push.js +5 -0
  663. data/node_modules/jquery/src/var/rcssNum.js +7 -0
  664. data/node_modules/jquery/src/var/rnotwhite.js +3 -0
  665. data/node_modules/jquery/src/var/slice.js +5 -0
  666. data/node_modules/jquery/src/var/support.js +5 -0
  667. data/node_modules/jquery/src/var/toString.js +5 -0
  668. data/node_modules/jquery/src/wrap.js +79 -0
  669. data/target/mdarray_sol.jar +0 -0
  670. data/test/jx/test_complete.rb +35 -0
  671. data/test/jx/test_js.rb +543 -0
  672. data/test/jx/test_proxy_array.rb +239 -0
  673. data/test/jx/test_proxy_hash.rb +160 -0
  674. data/test/jx/test_proxy_lambda.rb +80 -0
  675. data/test/jx/test_rb_js_compat.rb +135 -0
  676. data/test/jx/test_style_sheets.rb +90 -0
  677. data/test/mdarray/test_mdarray.rb +75 -0
  678. data/util/cacert.pem +4095 -0
  679. data/util/download.rb +256 -0
  680. data/vendor/jxbrowser-6.8.jar +0 -0
  681. data/vendor/licence.jar +0 -0
  682. data/version.rb +2 -0
  683. metadata +817 -0
@@ -0,0 +1,36 @@
1
+ define( [
2
+ "../var/document",
3
+ "../var/support"
4
+ ], function( document, support ) {
5
+
6
+ ( function() {
7
+ var input = document.createElement( "input" ),
8
+ select = document.createElement( "select" ),
9
+ opt = select.appendChild( document.createElement( "option" ) );
10
+
11
+ input.type = "checkbox";
12
+
13
+ // Support: iOS<=5.1, Android<=4.2+
14
+ // Default value for a checkbox should be "on"
15
+ support.checkOn = input.value !== "";
16
+
17
+ // Support: IE<=11+
18
+ // Must access selectedIndex to make default options select
19
+ support.optSelected = opt.selected;
20
+
21
+ // Support: Android<=2.3
22
+ // Options inside disabled selects are incorrectly marked as disabled
23
+ select.disabled = true;
24
+ support.optDisabled = !opt.disabled;
25
+
26
+ // Support: IE<=11+
27
+ // An input loses its value after becoming a radio
28
+ input = document.createElement( "input" );
29
+ input.value = "t";
30
+ input.type = "radio";
31
+ support.radioValue = input.value === "t";
32
+ } )();
33
+
34
+ return support;
35
+
36
+ } );
@@ -0,0 +1,177 @@
1
+ define( [
2
+ "../core",
3
+ "./support",
4
+ "../core/init"
5
+ ], function( jQuery, support ) {
6
+
7
+ var rreturn = /\r/g,
8
+ rspaces = /[\x20\t\r\n\f]+/g;
9
+
10
+ jQuery.fn.extend( {
11
+ val: function( value ) {
12
+ var hooks, ret, isFunction,
13
+ elem = this[ 0 ];
14
+
15
+ if ( !arguments.length ) {
16
+ if ( elem ) {
17
+ hooks = jQuery.valHooks[ elem.type ] ||
18
+ jQuery.valHooks[ elem.nodeName.toLowerCase() ];
19
+
20
+ if ( hooks &&
21
+ "get" in hooks &&
22
+ ( ret = hooks.get( elem, "value" ) ) !== undefined
23
+ ) {
24
+ return ret;
25
+ }
26
+
27
+ ret = elem.value;
28
+
29
+ return typeof ret === "string" ?
30
+
31
+ // Handle most common string cases
32
+ ret.replace( rreturn, "" ) :
33
+
34
+ // Handle cases where value is null/undef or number
35
+ ret == null ? "" : ret;
36
+ }
37
+
38
+ return;
39
+ }
40
+
41
+ isFunction = jQuery.isFunction( value );
42
+
43
+ return this.each( function( i ) {
44
+ var val;
45
+
46
+ if ( this.nodeType !== 1 ) {
47
+ return;
48
+ }
49
+
50
+ if ( isFunction ) {
51
+ val = value.call( this, i, jQuery( this ).val() );
52
+ } else {
53
+ val = value;
54
+ }
55
+
56
+ // Treat null/undefined as ""; convert numbers to string
57
+ if ( val == null ) {
58
+ val = "";
59
+
60
+ } else if ( typeof val === "number" ) {
61
+ val += "";
62
+
63
+ } else if ( jQuery.isArray( val ) ) {
64
+ val = jQuery.map( val, function( value ) {
65
+ return value == null ? "" : value + "";
66
+ } );
67
+ }
68
+
69
+ hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
70
+
71
+ // If set returns undefined, fall back to normal setting
72
+ if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
73
+ this.value = val;
74
+ }
75
+ } );
76
+ }
77
+ } );
78
+
79
+ jQuery.extend( {
80
+ valHooks: {
81
+ option: {
82
+ get: function( elem ) {
83
+
84
+ var val = jQuery.find.attr( elem, "value" );
85
+ return val != null ?
86
+ val :
87
+
88
+ // Support: IE10-11+
89
+ // option.text throws exceptions (#14686, #14858)
90
+ // Strip and collapse whitespace
91
+ // https://html.spec.whatwg.org/#strip-and-collapse-whitespace
92
+ jQuery.trim( jQuery.text( elem ) ).replace( rspaces, " " );
93
+ }
94
+ },
95
+ select: {
96
+ get: function( elem ) {
97
+ var value, option,
98
+ options = elem.options,
99
+ index = elem.selectedIndex,
100
+ one = elem.type === "select-one" || index < 0,
101
+ values = one ? null : [],
102
+ max = one ? index + 1 : options.length,
103
+ i = index < 0 ?
104
+ max :
105
+ one ? index : 0;
106
+
107
+ // Loop through all the selected options
108
+ for ( ; i < max; i++ ) {
109
+ option = options[ i ];
110
+
111
+ // IE8-9 doesn't update selected after form reset (#2551)
112
+ if ( ( option.selected || i === index ) &&
113
+
114
+ // Don't return options that are disabled or in a disabled optgroup
115
+ ( support.optDisabled ?
116
+ !option.disabled : option.getAttribute( "disabled" ) === null ) &&
117
+ ( !option.parentNode.disabled ||
118
+ !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
119
+
120
+ // Get the specific value for the option
121
+ value = jQuery( option ).val();
122
+
123
+ // We don't need an array for one selects
124
+ if ( one ) {
125
+ return value;
126
+ }
127
+
128
+ // Multi-Selects return an array
129
+ values.push( value );
130
+ }
131
+ }
132
+
133
+ return values;
134
+ },
135
+
136
+ set: function( elem, value ) {
137
+ var optionSet, option,
138
+ options = elem.options,
139
+ values = jQuery.makeArray( value ),
140
+ i = options.length;
141
+
142
+ while ( i-- ) {
143
+ option = options[ i ];
144
+ if ( option.selected =
145
+ jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
146
+ ) {
147
+ optionSet = true;
148
+ }
149
+ }
150
+
151
+ // Force browsers to behave consistently when non-matching value is set
152
+ if ( !optionSet ) {
153
+ elem.selectedIndex = -1;
154
+ }
155
+ return values;
156
+ }
157
+ }
158
+ }
159
+ } );
160
+
161
+ // Radios and checkboxes getter/setter
162
+ jQuery.each( [ "radio", "checkbox" ], function() {
163
+ jQuery.valHooks[ this ] = {
164
+ set: function( elem, value ) {
165
+ if ( jQuery.isArray( value ) ) {
166
+ return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
167
+ }
168
+ }
169
+ };
170
+ if ( !support.checkOn ) {
171
+ jQuery.valHooks[ this ].get = function( elem ) {
172
+ return elem.getAttribute( "value" ) === null ? "on" : elem.value;
173
+ };
174
+ }
175
+ } );
176
+
177
+ } );
@@ -0,0 +1,232 @@
1
+ define( [
2
+ "./core",
3
+ "./var/rnotwhite"
4
+ ], function( jQuery, rnotwhite ) {
5
+
6
+ // Convert String-formatted options into Object-formatted ones
7
+ function createOptions( options ) {
8
+ var object = {};
9
+ jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
10
+ object[ flag ] = true;
11
+ } );
12
+ return object;
13
+ }
14
+
15
+ /*
16
+ * Create a callback list using the following parameters:
17
+ *
18
+ * options: an optional list of space-separated options that will change how
19
+ * the callback list behaves or a more traditional option object
20
+ *
21
+ * By default a callback list will act like an event callback list and can be
22
+ * "fired" multiple times.
23
+ *
24
+ * Possible options:
25
+ *
26
+ * once: will ensure the callback list can only be fired once (like a Deferred)
27
+ *
28
+ * memory: will keep track of previous values and will call any callback added
29
+ * after the list has been fired right away with the latest "memorized"
30
+ * values (like a Deferred)
31
+ *
32
+ * unique: will ensure a callback can only be added once (no duplicate in the list)
33
+ *
34
+ * stopOnFalse: interrupt callings when a callback returns false
35
+ *
36
+ */
37
+ jQuery.Callbacks = function( options ) {
38
+
39
+ // Convert options from String-formatted to Object-formatted if needed
40
+ // (we check in cache first)
41
+ options = typeof options === "string" ?
42
+ createOptions( options ) :
43
+ jQuery.extend( {}, options );
44
+
45
+ var // Flag to know if list is currently firing
46
+ firing,
47
+
48
+ // Last fire value for non-forgettable lists
49
+ memory,
50
+
51
+ // Flag to know if list was already fired
52
+ fired,
53
+
54
+ // Flag to prevent firing
55
+ locked,
56
+
57
+ // Actual callback list
58
+ list = [],
59
+
60
+ // Queue of execution data for repeatable lists
61
+ queue = [],
62
+
63
+ // Index of currently firing callback (modified by add/remove as needed)
64
+ firingIndex = -1,
65
+
66
+ // Fire callbacks
67
+ fire = function() {
68
+
69
+ // Enforce single-firing
70
+ locked = options.once;
71
+
72
+ // Execute callbacks for all pending executions,
73
+ // respecting firingIndex overrides and runtime changes
74
+ fired = firing = true;
75
+ for ( ; queue.length; firingIndex = -1 ) {
76
+ memory = queue.shift();
77
+ while ( ++firingIndex < list.length ) {
78
+
79
+ // Run callback and check for early termination
80
+ if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
81
+ options.stopOnFalse ) {
82
+
83
+ // Jump to end and forget the data so .add doesn't re-fire
84
+ firingIndex = list.length;
85
+ memory = false;
86
+ }
87
+ }
88
+ }
89
+
90
+ // Forget the data if we're done with it
91
+ if ( !options.memory ) {
92
+ memory = false;
93
+ }
94
+
95
+ firing = false;
96
+
97
+ // Clean up if we're done firing for good
98
+ if ( locked ) {
99
+
100
+ // Keep an empty list if we have data for future add calls
101
+ if ( memory ) {
102
+ list = [];
103
+
104
+ // Otherwise, this object is spent
105
+ } else {
106
+ list = "";
107
+ }
108
+ }
109
+ },
110
+
111
+ // Actual Callbacks object
112
+ self = {
113
+
114
+ // Add a callback or a collection of callbacks to the list
115
+ add: function() {
116
+ if ( list ) {
117
+
118
+ // If we have memory from a past run, we should fire after adding
119
+ if ( memory && !firing ) {
120
+ firingIndex = list.length - 1;
121
+ queue.push( memory );
122
+ }
123
+
124
+ ( function add( args ) {
125
+ jQuery.each( args, function( _, arg ) {
126
+ if ( jQuery.isFunction( arg ) ) {
127
+ if ( !options.unique || !self.has( arg ) ) {
128
+ list.push( arg );
129
+ }
130
+ } else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) {
131
+
132
+ // Inspect recursively
133
+ add( arg );
134
+ }
135
+ } );
136
+ } )( arguments );
137
+
138
+ if ( memory && !firing ) {
139
+ fire();
140
+ }
141
+ }
142
+ return this;
143
+ },
144
+
145
+ // Remove a callback from the list
146
+ remove: function() {
147
+ jQuery.each( arguments, function( _, arg ) {
148
+ var index;
149
+ while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
150
+ list.splice( index, 1 );
151
+
152
+ // Handle firing indexes
153
+ if ( index <= firingIndex ) {
154
+ firingIndex--;
155
+ }
156
+ }
157
+ } );
158
+ return this;
159
+ },
160
+
161
+ // Check if a given callback is in the list.
162
+ // If no argument is given, return whether or not list has callbacks attached.
163
+ has: function( fn ) {
164
+ return fn ?
165
+ jQuery.inArray( fn, list ) > -1 :
166
+ list.length > 0;
167
+ },
168
+
169
+ // Remove all callbacks from the list
170
+ empty: function() {
171
+ if ( list ) {
172
+ list = [];
173
+ }
174
+ return this;
175
+ },
176
+
177
+ // Disable .fire and .add
178
+ // Abort any current/pending executions
179
+ // Clear all callbacks and values
180
+ disable: function() {
181
+ locked = queue = [];
182
+ list = memory = "";
183
+ return this;
184
+ },
185
+ disabled: function() {
186
+ return !list;
187
+ },
188
+
189
+ // Disable .fire
190
+ // Also disable .add unless we have memory (since it would have no effect)
191
+ // Abort any pending executions
192
+ lock: function() {
193
+ locked = queue = [];
194
+ if ( !memory ) {
195
+ list = memory = "";
196
+ }
197
+ return this;
198
+ },
199
+ locked: function() {
200
+ return !!locked;
201
+ },
202
+
203
+ // Call all callbacks with the given context and arguments
204
+ fireWith: function( context, args ) {
205
+ if ( !locked ) {
206
+ args = args || [];
207
+ args = [ context, args.slice ? args.slice() : args ];
208
+ queue.push( args );
209
+ if ( !firing ) {
210
+ fire();
211
+ }
212
+ }
213
+ return this;
214
+ },
215
+
216
+ // Call all the callbacks with the given arguments
217
+ fire: function() {
218
+ self.fireWith( this, arguments );
219
+ return this;
220
+ },
221
+
222
+ // To know if the callbacks have already been called at least once
223
+ fired: function() {
224
+ return !!fired;
225
+ }
226
+ };
227
+
228
+ return self;
229
+ };
230
+
231
+ return jQuery;
232
+ } );
@@ -0,0 +1,494 @@
1
+ define( [
2
+ "./var/arr",
3
+ "./var/document",
4
+ "./var/slice",
5
+ "./var/concat",
6
+ "./var/push",
7
+ "./var/indexOf",
8
+ "./var/class2type",
9
+ "./var/toString",
10
+ "./var/hasOwn",
11
+ "./var/support"
12
+ ], function( arr, document, slice, concat, push, indexOf, class2type, toString, hasOwn, support ) {
13
+
14
+ var
15
+ version = "@VERSION",
16
+
17
+ // Define a local copy of jQuery
18
+ jQuery = function( selector, context ) {
19
+
20
+ // The jQuery object is actually just the init constructor 'enhanced'
21
+ // Need init if jQuery is called (just allow error to be thrown if not included)
22
+ return new jQuery.fn.init( selector, context );
23
+ },
24
+
25
+ // Support: Android<4.1
26
+ // Make sure we trim BOM and NBSP
27
+ rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
28
+
29
+ // Matches dashed string for camelizing
30
+ rmsPrefix = /^-ms-/,
31
+ rdashAlpha = /-([\da-z])/gi,
32
+
33
+ // Used by jQuery.camelCase as callback to replace()
34
+ fcamelCase = function( all, letter ) {
35
+ return letter.toUpperCase();
36
+ };
37
+
38
+ jQuery.fn = jQuery.prototype = {
39
+
40
+ // The current version of jQuery being used
41
+ jquery: version,
42
+
43
+ constructor: jQuery,
44
+
45
+ // Start with an empty selector
46
+ selector: "",
47
+
48
+ // The default length of a jQuery object is 0
49
+ length: 0,
50
+
51
+ toArray: function() {
52
+ return slice.call( this );
53
+ },
54
+
55
+ // Get the Nth element in the matched element set OR
56
+ // Get the whole matched element set as a clean array
57
+ get: function( num ) {
58
+ return num != null ?
59
+
60
+ // Return just the one element from the set
61
+ ( num < 0 ? this[ num + this.length ] : this[ num ] ) :
62
+
63
+ // Return all the elements in a clean array
64
+ slice.call( this );
65
+ },
66
+
67
+ // Take an array of elements and push it onto the stack
68
+ // (returning the new matched element set)
69
+ pushStack: function( elems ) {
70
+
71
+ // Build a new jQuery matched element set
72
+ var ret = jQuery.merge( this.constructor(), elems );
73
+
74
+ // Add the old object onto the stack (as a reference)
75
+ ret.prevObject = this;
76
+ ret.context = this.context;
77
+
78
+ // Return the newly-formed element set
79
+ return ret;
80
+ },
81
+
82
+ // Execute a callback for every element in the matched set.
83
+ each: function( callback ) {
84
+ return jQuery.each( this, callback );
85
+ },
86
+
87
+ map: function( callback ) {
88
+ return this.pushStack( jQuery.map( this, function( elem, i ) {
89
+ return callback.call( elem, i, elem );
90
+ } ) );
91
+ },
92
+
93
+ slice: function() {
94
+ return this.pushStack( slice.apply( this, arguments ) );
95
+ },
96
+
97
+ first: function() {
98
+ return this.eq( 0 );
99
+ },
100
+
101
+ last: function() {
102
+ return this.eq( -1 );
103
+ },
104
+
105
+ eq: function( i ) {
106
+ var len = this.length,
107
+ j = +i + ( i < 0 ? len : 0 );
108
+ return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
109
+ },
110
+
111
+ end: function() {
112
+ return this.prevObject || this.constructor();
113
+ },
114
+
115
+ // For internal use only.
116
+ // Behaves like an Array's method, not like a jQuery method.
117
+ push: push,
118
+ sort: arr.sort,
119
+ splice: arr.splice
120
+ };
121
+
122
+ jQuery.extend = jQuery.fn.extend = function() {
123
+ var options, name, src, copy, copyIsArray, clone,
124
+ target = arguments[ 0 ] || {},
125
+ i = 1,
126
+ length = arguments.length,
127
+ deep = false;
128
+
129
+ // Handle a deep copy situation
130
+ if ( typeof target === "boolean" ) {
131
+ deep = target;
132
+
133
+ // Skip the boolean and the target
134
+ target = arguments[ i ] || {};
135
+ i++;
136
+ }
137
+
138
+ // Handle case when target is a string or something (possible in deep copy)
139
+ if ( typeof target !== "object" && !jQuery.isFunction( target ) ) {
140
+ target = {};
141
+ }
142
+
143
+ // Extend jQuery itself if only one argument is passed
144
+ if ( i === length ) {
145
+ target = this;
146
+ i--;
147
+ }
148
+
149
+ for ( ; i < length; i++ ) {
150
+
151
+ // Only deal with non-null/undefined values
152
+ if ( ( options = arguments[ i ] ) != null ) {
153
+
154
+ // Extend the base object
155
+ for ( name in options ) {
156
+ src = target[ name ];
157
+ copy = options[ name ];
158
+
159
+ // Prevent never-ending loop
160
+ if ( target === copy ) {
161
+ continue;
162
+ }
163
+
164
+ // Recurse if we're merging plain objects or arrays
165
+ if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
166
+ ( copyIsArray = jQuery.isArray( copy ) ) ) ) {
167
+
168
+ if ( copyIsArray ) {
169
+ copyIsArray = false;
170
+ clone = src && jQuery.isArray( src ) ? src : [];
171
+
172
+ } else {
173
+ clone = src && jQuery.isPlainObject( src ) ? src : {};
174
+ }
175
+
176
+ // Never move original objects, clone them
177
+ target[ name ] = jQuery.extend( deep, clone, copy );
178
+
179
+ // Don't bring in undefined values
180
+ } else if ( copy !== undefined ) {
181
+ target[ name ] = copy;
182
+ }
183
+ }
184
+ }
185
+ }
186
+
187
+ // Return the modified object
188
+ return target;
189
+ };
190
+
191
+ jQuery.extend( {
192
+
193
+ // Unique for each copy of jQuery on the page
194
+ expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
195
+
196
+ // Assume jQuery is ready without the ready module
197
+ isReady: true,
198
+
199
+ error: function( msg ) {
200
+ throw new Error( msg );
201
+ },
202
+
203
+ noop: function() {},
204
+
205
+ isFunction: function( obj ) {
206
+ return jQuery.type( obj ) === "function";
207
+ },
208
+
209
+ isArray: Array.isArray,
210
+
211
+ isWindow: function( obj ) {
212
+ return obj != null && obj === obj.window;
213
+ },
214
+
215
+ isNumeric: function( obj ) {
216
+
217
+ // parseFloat NaNs numeric-cast false positives (null|true|false|"")
218
+ // ...but misinterprets leading-number strings, particularly hex literals ("0x...")
219
+ // subtraction forces infinities to NaN
220
+ // adding 1 corrects loss of precision from parseFloat (#15100)
221
+ var realStringObj = obj && obj.toString();
222
+ return !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0;
223
+ },
224
+
225
+ isPlainObject: function( obj ) {
226
+ var key;
227
+
228
+ // Not plain objects:
229
+ // - Any object or value whose internal [[Class]] property is not "[object Object]"
230
+ // - DOM nodes
231
+ // - window
232
+ if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
233
+ return false;
234
+ }
235
+
236
+ // Not own constructor property must be Object
237
+ if ( obj.constructor &&
238
+ !hasOwn.call( obj, "constructor" ) &&
239
+ !hasOwn.call( obj.constructor.prototype || {}, "isPrototypeOf" ) ) {
240
+ return false;
241
+ }
242
+
243
+ // Own properties are enumerated firstly, so to speed up,
244
+ // if last one is own, then all properties are own
245
+ for ( key in obj ) {}
246
+
247
+ return key === undefined || hasOwn.call( obj, key );
248
+ },
249
+
250
+ isEmptyObject: function( obj ) {
251
+ var name;
252
+ for ( name in obj ) {
253
+ return false;
254
+ }
255
+ return true;
256
+ },
257
+
258
+ type: function( obj ) {
259
+ if ( obj == null ) {
260
+ return obj + "";
261
+ }
262
+
263
+ // Support: Android<4.0, iOS<6 (functionish RegExp)
264
+ return typeof obj === "object" || typeof obj === "function" ?
265
+ class2type[ toString.call( obj ) ] || "object" :
266
+ typeof obj;
267
+ },
268
+
269
+ // Evaluates a script in a global context
270
+ globalEval: function( code ) {
271
+ var script,
272
+ indirect = eval;
273
+
274
+ code = jQuery.trim( code );
275
+
276
+ if ( code ) {
277
+
278
+ // If the code includes a valid, prologue position
279
+ // strict mode pragma, execute code by injecting a
280
+ // script tag into the document.
281
+ if ( code.indexOf( "use strict" ) === 1 ) {
282
+ script = document.createElement( "script" );
283
+ script.text = code;
284
+ document.head.appendChild( script ).parentNode.removeChild( script );
285
+ } else {
286
+
287
+ // Otherwise, avoid the DOM node creation, insertion
288
+ // and removal by using an indirect global eval
289
+
290
+ indirect( code );
291
+ }
292
+ }
293
+ },
294
+
295
+ // Convert dashed to camelCase; used by the css and data modules
296
+ // Support: IE9-11+
297
+ // Microsoft forgot to hump their vendor prefix (#9572)
298
+ camelCase: function( string ) {
299
+ return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
300
+ },
301
+
302
+ nodeName: function( elem, name ) {
303
+ return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
304
+ },
305
+
306
+ each: function( obj, callback ) {
307
+ var length, i = 0;
308
+
309
+ if ( isArrayLike( obj ) ) {
310
+ length = obj.length;
311
+ for ( ; i < length; i++ ) {
312
+ if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
313
+ break;
314
+ }
315
+ }
316
+ } else {
317
+ for ( i in obj ) {
318
+ if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
319
+ break;
320
+ }
321
+ }
322
+ }
323
+
324
+ return obj;
325
+ },
326
+
327
+ // Support: Android<4.1
328
+ trim: function( text ) {
329
+ return text == null ?
330
+ "" :
331
+ ( text + "" ).replace( rtrim, "" );
332
+ },
333
+
334
+ // results is for internal usage only
335
+ makeArray: function( arr, results ) {
336
+ var ret = results || [];
337
+
338
+ if ( arr != null ) {
339
+ if ( isArrayLike( Object( arr ) ) ) {
340
+ jQuery.merge( ret,
341
+ typeof arr === "string" ?
342
+ [ arr ] : arr
343
+ );
344
+ } else {
345
+ push.call( ret, arr );
346
+ }
347
+ }
348
+
349
+ return ret;
350
+ },
351
+
352
+ inArray: function( elem, arr, i ) {
353
+ return arr == null ? -1 : indexOf.call( arr, elem, i );
354
+ },
355
+
356
+ merge: function( first, second ) {
357
+ var len = +second.length,
358
+ j = 0,
359
+ i = first.length;
360
+
361
+ for ( ; j < len; j++ ) {
362
+ first[ i++ ] = second[ j ];
363
+ }
364
+
365
+ first.length = i;
366
+
367
+ return first;
368
+ },
369
+
370
+ grep: function( elems, callback, invert ) {
371
+ var callbackInverse,
372
+ matches = [],
373
+ i = 0,
374
+ length = elems.length,
375
+ callbackExpect = !invert;
376
+
377
+ // Go through the array, only saving the items
378
+ // that pass the validator function
379
+ for ( ; i < length; i++ ) {
380
+ callbackInverse = !callback( elems[ i ], i );
381
+ if ( callbackInverse !== callbackExpect ) {
382
+ matches.push( elems[ i ] );
383
+ }
384
+ }
385
+
386
+ return matches;
387
+ },
388
+
389
+ // arg is for internal usage only
390
+ map: function( elems, callback, arg ) {
391
+ var length, value,
392
+ i = 0,
393
+ ret = [];
394
+
395
+ // Go through the array, translating each of the items to their new values
396
+ if ( isArrayLike( elems ) ) {
397
+ length = elems.length;
398
+ for ( ; i < length; i++ ) {
399
+ value = callback( elems[ i ], i, arg );
400
+
401
+ if ( value != null ) {
402
+ ret.push( value );
403
+ }
404
+ }
405
+
406
+ // Go through every key on the object,
407
+ } else {
408
+ for ( i in elems ) {
409
+ value = callback( elems[ i ], i, arg );
410
+
411
+ if ( value != null ) {
412
+ ret.push( value );
413
+ }
414
+ }
415
+ }
416
+
417
+ // Flatten any nested arrays
418
+ return concat.apply( [], ret );
419
+ },
420
+
421
+ // A global GUID counter for objects
422
+ guid: 1,
423
+
424
+ // Bind a function to a context, optionally partially applying any
425
+ // arguments.
426
+ proxy: function( fn, context ) {
427
+ var tmp, args, proxy;
428
+
429
+ if ( typeof context === "string" ) {
430
+ tmp = fn[ context ];
431
+ context = fn;
432
+ fn = tmp;
433
+ }
434
+
435
+ // Quick check to determine if target is callable, in the spec
436
+ // this throws a TypeError, but we will just return undefined.
437
+ if ( !jQuery.isFunction( fn ) ) {
438
+ return undefined;
439
+ }
440
+
441
+ // Simulated bind
442
+ args = slice.call( arguments, 2 );
443
+ proxy = function() {
444
+ return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
445
+ };
446
+
447
+ // Set the guid of unique handler to the same of original handler, so it can be removed
448
+ proxy.guid = fn.guid = fn.guid || jQuery.guid++;
449
+
450
+ return proxy;
451
+ },
452
+
453
+ now: Date.now,
454
+
455
+ // jQuery.support is not used in Core but other projects attach their
456
+ // properties to it so it needs to exist.
457
+ support: support
458
+ } );
459
+
460
+ // JSHint would error on this code due to the Symbol not being defined in ES5.
461
+ // Defining this global in .jshintrc would create a danger of using the global
462
+ // unguarded in another place, it seems safer to just disable JSHint for these
463
+ // three lines.
464
+ /* jshint ignore: start */
465
+ if ( typeof Symbol === "function" ) {
466
+ jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
467
+ }
468
+ /* jshint ignore: end */
469
+
470
+ // Populate the class2type map
471
+ jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
472
+ function( i, name ) {
473
+ class2type[ "[object " + name + "]" ] = name.toLowerCase();
474
+ } );
475
+
476
+ function isArrayLike( obj ) {
477
+
478
+ // Support: iOS 8.2 (not reproducible in simulator)
479
+ // `in` check used to prevent JIT error (gh-2145)
480
+ // hasOwn isn't used here due to false negatives
481
+ // regarding Nodelist length in IE
482
+ var length = !!obj && "length" in obj && obj.length,
483
+ type = jQuery.type( obj );
484
+
485
+ if ( type === "function" || jQuery.isWindow( obj ) ) {
486
+ return false;
487
+ }
488
+
489
+ return type === "array" || length === 0 ||
490
+ typeof length === "number" && length > 0 && ( length - 1 ) in obj;
491
+ }
492
+
493
+ return jQuery;
494
+ } );