updates to UI since last unsuccessful push attempt. Menus rendering now, but still need some work.

This commit is contained in:
Jason White
2014-08-13 06:13:17 -04:00
parent 6ffd8b95f4
commit a4807a026c
4 changed files with 89 additions and 60 deletions

View File

@ -0,0 +1,40 @@
//goatConstants
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'
}
];