removed redundant require call

This commit is contained in:
Michael Katz 2015-08-14 17:25:55 +03:00
parent 68d952eb5d
commit d13d8166bc

View File

@ -5,9 +5,8 @@ define(['jquery',
'goatApp/controller/MenuController', 'goatApp/controller/MenuController',
'goatApp/view/LessonContentView', 'goatApp/view/LessonContentView',
'goatApp/view/MenuView', 'goatApp/view/MenuView',
'goatApp/view/TitleView', 'goatApp/view/TitleView'
'goatApp/model/MenuData' ], function ($,_,Backbone,LessonController,MenuController,LessonContentView,MenuView,TitleView) {
], function ($,_,Backbone,LessonController,MenuController,LessonContentView,MenuView,TitleView, MenuModel) {
var lessonView = new LessonContentView(); var lessonView = new LessonContentView();
var menuView = new MenuView(); var menuView = new MenuView();