From d13d8166bc3b28792582d3ea7d439fefdcd8708e Mon Sep 17 00:00:00 2001 From: Michael Katz Date: Fri, 14 Aug 2015 17:25:55 +0300 Subject: [PATCH] removed redundant require call --- .../src/main/webapp/js/goatApp/view/GoatRouter.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/webgoat-container/src/main/webapp/js/goatApp/view/GoatRouter.js b/webgoat-container/src/main/webapp/js/goatApp/view/GoatRouter.js index 67452fa8f..07cf17eb9 100644 --- a/webgoat-container/src/main/webapp/js/goatApp/view/GoatRouter.js +++ b/webgoat-container/src/main/webapp/js/goatApp/view/GoatRouter.js @@ -5,9 +5,8 @@ define(['jquery', 'goatApp/controller/MenuController', 'goatApp/view/LessonContentView', 'goatApp/view/MenuView', - 'goatApp/view/TitleView', - 'goatApp/model/MenuData' -], function ($,_,Backbone,LessonController,MenuController,LessonContentView,MenuView,TitleView, MenuModel) { + 'goatApp/view/TitleView' +], function ($,_,Backbone,LessonController,MenuController,LessonContentView,MenuView,TitleView) { var lessonView = new LessonContentView(); var menuView = new MenuView();