We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With Django 3.2.15, editor/jquery.treeTable.js seems to be loaded before admin/js/jquery.init.js. (This is caused by django's Media merging algorithm.
editor/jquery.treeTable.js
admin/js/jquery.init.js
To fix it, jQuery and jquery.init must be defined as depedencies. This can be done by prepending them in js list in editor/tree_editor.py:
js
editor/tree_editor.py
class Media: ... extra = '' if django_settings.DEBUG else '.min' js = ['admin/js/vendor/jquery/jquery%s.js' % extra, 'admin/js/jquery.init.js', 'editor/jquery.treeTable.js']
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With Django 3.2.15,
editor/jquery.treeTable.js
seems to be loaded beforeadmin/js/jquery.init.js
. (This is caused by django's Media merging algorithm.To fix it, jQuery and jquery.init must be defined as depedencies. This can be done by prepending them in
js
list ineditor/tree_editor.py
:The text was updated successfully, but these errors were encountered: