Skip to content
Snippets Groups Projects
Commit 3734b699 authored by LE GAC Renaud's avatar LE GAC Renaud
Browse files

Fix order when loading ExtJS libraries.

parent b8d5a7ea
No related branches found
No related tags found
2 merge requests!27Release 0.9.1,!268 extjs 6
......@@ -190,9 +190,8 @@ def debug():
# debug version of the javascript libraries
response.files.extend(get_file_paths(plugin.ace_libmin, ext='.js'))
response.files.extend(get_file_paths(plugin.mathjax_libmin, ext='.js'))
response.files.extend(get_file_paths(plugin.extjs_debug, ext='.js'))
response.files.extend(get_file_paths(plugin.extjs_debug, ext='.js', alpha=False))
response.files.extend(get_file_paths(plugin.dbui_debug, ext='.js'))
response.files.extend(get_file_paths(plugin.app_debug, ext='.js'))
......@@ -360,7 +359,7 @@ def index():
response.files.extend(get_file_paths(plugin.ace_libmin, ext='.js'))
response.files.extend(get_file_paths(plugin.mathjax_libmin, ext='.js'))
response.files.extend(get_file_paths(plugin.extjs_libmin, ext='.js'))
response.files.extend(get_file_paths(plugin.extjs_libmin, ext='.js', alpha=False))
response.files.extend(get_file_paths(plugin.dbui_libmin, ext='.js'))
response.files.extend(get_file_paths(plugin.app_libmin, ext='.js'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment