Commit 2a59cd123f0a8ede0d25ba427989c03977cf639f

Authored by totoro
1 parent e973169f

[+] add jquery flot graph lib

[~] change the location of the tiptip lib
web/jQuery/CXM_jquery_tiptip.anubis
... ... @@ -54,13 +54,10 @@ public define JQ_tiptip_position
54 54 /* Initialize jQuery tipTip */
55 55 public define List(HTML_Head_Tag)
56 56 jquery_tiptip_init
57   - (
58   - String web_dir,
59   - )
60 57 =
61 58 [
62   - css(css_file("/css/jquery/tipTip.css")),
63   - js(js_file("/js/jquery/jquery.tipTip.minified.js"))
  59 + css(css_file("/js/jquery/tiptip/tiptip.css")),
  60 + js(js_file("/js/jquery/tiptip/tiptip.min.js"))
64 61 ]
65 62 .
66 63  
... ...
web/jQuery/jq_flot.anubis 0 → 100644
  1 +/*
  2 + * Created by PyramIDE.
  3 + * User: フランスのトトロ
  4 + * Date: 19/06/2015
  5 + * Time: 21:42
  6 + * © Calexium
  7 + */
  8 +
  9 +read calexium_lib/web/CXM_making_a_web_site.anubis
  10 +
  11 +public define List(HTML_Head_Tag)
  12 + jq_flot_init
  13 + =
  14 + [
  15 + js(js_file("js/jquery/flot/jquery.flot.min.js")),
  16 + js(js_file("js/jquery/flot/jquery.flot.axislabels.js")),
  17 + js(js_file("js/jquery/flot/jquery.flot.datahover.js")),
  18 + js(js_file("js/jquery/flot/jquery.flot.fillbetween.min.js")),
  19 + js(js_file("js/jquery/flot/jquery.flot.navigate.min.js")),
  20 + js(js_file("js/jquery/flot/jquery.flot.orderBars.js")),
  21 + js(js_file("js/jquery/flot/jquery.flot.pie.min.js"))
  22 + ]
  23 + .
  24 +
... ...