@@ -24,27 +24,27 @@ goat.utils = {
24
24
return title ;
25
25
} ,
26
26
showLessonCookiesAndParams : function ( ) {
27
- $ . get ( "service/cookies_widget.mvc" , { } , function ( reply ) {
27
+ $ . get ( goatConstants . cookieService , { } , function ( reply ) {
28
28
$ ( "#lesson_cookies" ) . html ( reply ) ;
29
29
} , "html" ) ;
30
30
} ,
31
31
showLessonHint : function ( ) {
32
- $ . get ( "service/hint_widget.mvc" , { } , function ( reply ) {
32
+ $ . get ( goatConstants . hintService , { } , function ( reply ) {
33
33
$ ( "#lesson_hint" ) . html ( reply ) ;
34
34
} , "html" ) ;
35
35
} ,
36
36
showLessonSource : function ( ) {
37
- $ . get ( "service/source.mvc" , { } , function ( reply ) {
37
+ $ . get ( goatConstants . sourceService , { } , function ( reply ) {
38
38
$ ( "#lesson_source" ) . html ( "<pre>" + reply + "</pre>" ) ;
39
39
} , "html" ) ;
40
40
} ,
41
41
showLessonSolution : function ( ) {
42
- $ . get ( "service/solution.mvc" , { } , function ( reply ) {
42
+ $ . get ( goatConstants . solutionService , { } , function ( reply ) {
43
43
$ ( "#lesson_solution" ) . html ( reply ) ;
44
44
} , "html" ) ;
45
45
} ,
46
46
showLessonPlan : function ( ) {
47
- $ . get ( "service/lessonplan.mvc" , { } , function ( reply ) {
47
+ $ . get ( goatConstants . lessonPlanService , { } , function ( reply ) {
48
48
$ ( "#lesson_plan" ) . html ( reply ) ;
49
49
} , "html" ) ;
50
50
}
0 commit comments