cookie view re-enabled

This commit is contained in:
Jason White
2015-08-13 21:46:13 -04:00
parent da5a63453b
commit 1351f0e6a2
6 changed files with 61 additions and 16 deletions

View File

@ -8,6 +8,7 @@ define(['jquery',
'goatApp/view/SolutionView',
'goatApp/view/LessonHintView',
'goatApp/view/HelpControlsView',
'goatApp/view/CookieView',
'goatApp/support/GoatUtils'
],
function($,
@ -20,6 +21,7 @@ define(['jquery',
SolutionView,
LessonHintView,
HelpControlsView,
CookieView,
GoatUtils
) {
'use strict'
@ -77,6 +79,7 @@ define(['jquery',
this.lessonHintView = new LessonHintView();
this.listenToOnce(this.lessonHintView,'hints:loaded',this.areHelpsReady);
//
this.cookieView = new CookieView();
this.hideShowHelps(null);
};