From e8a84248992575e92e728a2d5c5d1fd117c08f8a Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Wed, 15 Sep 2010 15:12:57 +0200 Subject: [PATCH] improve debugging --- scm-webapp/src/main/webapp/resources/js/layout.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/scm-webapp/src/main/webapp/resources/js/layout.js b/scm-webapp/src/main/webapp/resources/js/layout.js index 5f1f9bc3cb..fefb7baa30 100644 --- a/scm-webapp/src/main/webapp/resources/js/layout.js +++ b/scm-webapp/src/main/webapp/resources/js/layout.js @@ -95,11 +95,14 @@ Ext.onReady(function(){ },{ title: 'Config', items: [{ - label: 'Repositories', - fn: null + label: 'General', + fn: function(){ console.debug( 'General Config' ); } + },{ + label: 'Repository Types', + fn: function(){ console.debug( 'Repository Type Config' ); } },{ label: 'Server', - fn: null + fn: function(){ console.debug( 'Server Config' ); } }] }]); }