Merge pull request #6661 from edx/hotfix/2015-01-16

add a missing check for an undefined object
This commit is contained in:
chrisndodge
2015-01-16 12:24:22 -05:00

View File

@@ -208,7 +208,7 @@ from django.utils.translation import ugettext as _
// before going to billing details page
// if exists then trigger click event of the apply code button
var code = $('div.code-input input#input_code').val();
if (code!= ''){
if (typeof(code) != 'undefined' && code != ''){
$('div.code-input #submit-code').trigger('click');
return false;
}