diff options
Diffstat (limited to 'hugo/js/pmd/init.js')
| -rw-r--r-- | hugo/js/pmd/init.js | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/hugo/js/pmd/init.js b/hugo/js/pmd/init.js new file mode 100644 index 0000000..00b09b9 --- /dev/null +++ b/hugo/js/pmd/init.js @@ -0,0 +1,31 @@ +/* vim: set expandtab sw=4 ts=4 sts=4: */ +/** + * Initialises the data required to run PMD, then fires it up. + */ + +var j_tabs, h_tabs, contr, server, db, token; + +AJAX.registerTeardown('pmd/init.js', function() { + $(".trigger").unbind('click'); +}); + +AJAX.registerOnload('pmd/init.js', function() { + $(".trigger").click(function() { + $(".panel").toggle("fast"); + $(this).toggleClass("active"); + return false; + }); + + var tables_data = $.parseJSON($("#script_tables").html()); + + j_tabs = tables_data.j_tabs; + h_tabs = tables_data.h_tabs; + contr = $.parseJSON($("#script_contr").html()); + display_field = $.parseJSON($("#script_display_field").html()); + + server = $("#script_server").html(); + db = $("#script_db").html(); + token = $("#script_token").html(); + + Main(); +}); |
