Merge remaining js files into django-pipeline groups

This commit is contained in:
Calen Pennington
2012-07-23 11:26:54 -04:00
parent d2d29b2cf9
commit d19e50aeb6
2 changed files with 6 additions and 5 deletions

View File

@@ -326,7 +326,12 @@ PIPELINE_JS = {
pth.replace(PROJECT_ROOT / 'static/', '')
for pth in glob2.glob(PROJECT_ROOT / 'static/coffee/src/**/*.coffee')\
if pth not in courseware_only_js
] + ['js/form.ext.js'],
] + [
'js/form.ext.js',
'js/my_courses_dropdown.js',
'js/toggle_login_modal.js',
'js/sticky_filter.js',
],
'output_filename': 'js/application.js'
},
'courseware': {

View File

@@ -34,9 +34,5 @@
<![endif]-->
<%block name="js_extra"/>
<script src="${static.url('js/my_courses_dropdown.js')}"></script>
<script src="${static.url('js/toggle_login_modal.js')}"></script>
<script src="${static.url('js/sticky_filter.js')}"></script>
</body>
</html>