From 2a59cd123f0a8ede0d25ba427989c03977cf639f Mon Sep 17 00:00:00 2001 From: totoro Date: Sun, 21 Jun 2015 17:59:45 +0200 Subject: [PATCH] [+] add jquery flot graph lib [~] change the location of the tiptip lib --- web/jQuery/CXM_jquery_tiptip.anubis | 7 ++----- web/jQuery/jq_flot.anubis | 24 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 5 deletions(-) create mode 100644 web/jQuery/jq_flot.anubis diff --git a/web/jQuery/CXM_jquery_tiptip.anubis b/web/jQuery/CXM_jquery_tiptip.anubis index 75058a8..c156685 100644 --- a/web/jQuery/CXM_jquery_tiptip.anubis +++ b/web/jQuery/CXM_jquery_tiptip.anubis @@ -54,13 +54,10 @@ public define JQ_tiptip_position /* Initialize jQuery tipTip */ public define List(HTML_Head_Tag) jquery_tiptip_init - ( - String web_dir, - ) = [ - css(css_file("/css/jquery/tipTip.css")), - js(js_file("/js/jquery/jquery.tipTip.minified.js")) + css(css_file("/js/jquery/tiptip/tiptip.css")), + js(js_file("/js/jquery/tiptip/tiptip.min.js")) ] . diff --git a/web/jQuery/jq_flot.anubis b/web/jQuery/jq_flot.anubis new file mode 100644 index 0000000..e682b91 --- /dev/null +++ b/web/jQuery/jq_flot.anubis @@ -0,0 +1,24 @@ +/* + * Created by PyramIDE. + * User: フランスのトトロ + * Date: 19/06/2015 + * Time: 21:42 + * © Calexium + */ + +read calexium_lib/web/CXM_making_a_web_site.anubis + +public define List(HTML_Head_Tag) + jq_flot_init + = + [ + js(js_file("js/jquery/flot/jquery.flot.min.js")), + js(js_file("js/jquery/flot/jquery.flot.axislabels.js")), + js(js_file("js/jquery/flot/jquery.flot.datahover.js")), + js(js_file("js/jquery/flot/jquery.flot.fillbetween.min.js")), + js(js_file("js/jquery/flot/jquery.flot.navigate.min.js")), + js(js_file("js/jquery/flot/jquery.flot.orderBars.js")), + js(js_file("js/jquery/flot/jquery.flot.pie.min.js")) + ] + . + -- libgit2 0.21.4