From 3aa6cb044b2b9eaa5904b097eb0170eb8111b8ee Mon Sep 17 00:00:00 2001 From: Jason White Date: Sun, 24 Aug 2014 09:04:07 -0400 Subject: [PATCH] removing Home/about/contact from left menu rendering/constants file --- src/main/webapp/js/goatConstants.js | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/src/main/webapp/js/goatConstants.js b/src/main/webapp/js/goatConstants.js index 7b6f0eb8d..2c7ee6e5c 100644 --- a/src/main/webapp/js/goatConstants.js +++ b/src/main/webapp/js/goatConstants.js @@ -4,37 +4,12 @@ var goatConstants = {}; goatConstants.CATEGORYCLASS = 'fa-angle-right pull-right'; goatConstants.menuPrefix = [ - { - name:'Home', - type:'STATIC', - complete:false, - link:'home.jsp', - children:null, - class:'fa-home' - }, - { - name:'About', - type:'STATIC', - complete:false, - link:'about.jsp', - children:null, - class:'fa-users' - }, - { - name:'Contact', - type:'STATIC', - complete:false, - link:'contact.jsp', - children:null, - class:'fa-envelope-o' - }, { name:'LESSONS', type:'STATIC', complete:false, link:'', children:null, - class:'fa-bars' + class:'fa-bars static' } - ];