From bb910ca6328fd4cd543c665906701b8a5fbd1769 Mon Sep 17 00:00:00 2001 From: cahrens Date: Thu, 13 Aug 2015 11:28:51 -0400 Subject: [PATCH] Add toggle_login_modal to list of base_application_js. TNL-3051 --- lms/envs/common.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lms/envs/common.py b/lms/envs/common.py index 08403ba4b7..e6ce12e064 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -1259,6 +1259,7 @@ base_application_js = [ 'js/form.ext.js', 'js/src/ie_shim.js', 'js/src/accessibility_tools.js', + 'js/toggle_login_modal.js', ] dashboard_js = ( @@ -1295,7 +1296,6 @@ instructor_dash_js = ( # JavaScript modules. student_account_js = [ 'js/utils/edx.utils.validate.js', - 'js/toggle_login_modal.js', 'js/sticky_filter.js', 'js/query-params.js', 'js/student_account/models/LoginModel.js', @@ -1312,7 +1312,6 @@ student_account_js = [ ] verify_student_js = [ - 'js/toggle_login_modal.js', 'js/sticky_filter.js', 'js/query-params.js', 'js/verify_student/models/verification_model.js', @@ -1505,7 +1504,6 @@ PIPELINE_JS = { # Application will contain all paths not in courseware_only_js 'source_filenames': ['js/xblock/core.js'] + sorted(common_js) + sorted(project_js) + base_application_js + [ - 'js/toggle_login_modal.js', 'js/sticky_filter.js', 'js/query-params.js', ],