File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1036,20 +1036,20 @@ var Cmi5;
1036
1036
/**
1037
1037
Retrieve the return URL as provided in LMS launch data
1038
1038
1039
- @method getReturnUrl
1039
+ @method getReturnURL
1040
1040
@throws {Error } LMS launch data has not been loaded
1041
1041
@return {String|null } mastery score or null
1042
1042
*/
1043
- getReturnUrl : function ( ) {
1044
- this . log ( "getReturnUrl " ) ;
1043
+ getReturnURL : function ( ) {
1044
+ this . log ( "getReturnURL " ) ;
1045
1045
var result = null ;
1046
1046
1047
1047
if ( this . _lmsLaunchData === null ) {
1048
- throw new Error ( "Can't determine returnUrl until LMS LaunchData has been loaded" ) ;
1048
+ throw new Error ( "Can't determine returnURL until LMS LaunchData has been loaded" ) ;
1049
1049
}
1050
1050
1051
- if ( typeof this . _lmsLaunchData . returnUrl !== "undefined" ) {
1052
- result = this . _lmsLaunchData . returnUrl ;
1051
+ if ( typeof this . _lmsLaunchData . returnURL !== "undefined" ) {
1052
+ result = this . _lmsLaunchData . returnURL ;
1053
1053
}
1054
1054
1055
1055
return result ;
You can’t perform that action at this time.
0 commit comments