10 lines
335 B
Python
10 lines
335 B
Python
"""
|
|
URL patterns for Javascript files used to load all of the XModule JS in one wad.
|
|
"""
|
|
from django.conf.urls import url, patterns
|
|
|
|
urlpatterns = patterns('pipeline_js.views', # nopep8
|
|
url(r'^files\.json$', 'xmodule_js_files', name='xmodule_js_files'),
|
|
url(r'^xmodule\.js$', 'requirejs_xmodule', name='requirejs_xmodule'),
|
|
)
|