diff --git a/plugins/mezuro/public/javascripts/project_content.js b/plugins/mezuro/public/javascripts/project_content.js index adf0e43..9e96bd0 100644 --- a/plugins/mezuro/public/javascripts/project_content.js +++ b/plugins/mezuro/public/javascripts/project_content.js @@ -10,8 +10,8 @@ function showProjectContent() { } function toogle(element){ - alert(element); - jQuery(element).hide(); + jQuery(element).toggle(); + return false; } function reloadModule(){ @@ -50,12 +50,14 @@ function showProjectResult(content) { function showProjectTree(content){ processingTree = false; jQuery('#project-tree').html(content); + return false; } function showModuleResult(content){ if (processingTree != true){ jQuery('#module-result').html(content); } + return false; } function callAction(action, params, callback){ -- libgit2 0.21.2