WebGoat/src/main/webapp/js/goatConstants.js
Dave a387d06a34 Refactored files to Maven standard Layout
Added plugin to produce executable jar. Now it is easy to run webgoat on all platforms.
2014-08-23 13:07:10 -04:00

41 lines
595 B
JavaScript

//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'
}
];