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
Currently what is stated in the docs is not aligned with what the code does:
django-smart-selects/docs/settings.md
Lines 3 to 10 in 1f3ac7c
django-smart-selects/smart_selects/widgets.py
Lines 16 to 51 in 1f3ac7c
Also there are no tests which ensures this beaviour.
The issues are:
JQUERY_URL=True
True
USE_DJANGO_JQUERY
JQUERY_URL
False
None
Some tests over this feature are required and also the docs should be more accurate.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently what is stated in the docs is not aligned with what the code does:
django-smart-selects/docs/settings.md
Lines 3 to 10 in 1f3ac7c
django-smart-selects/smart_selects/widgets.py
Lines 16 to 51 in 1f3ac7c
Also there are no tests which ensures this beaviour.
The issues are:
JQUERY_URL=True
it results in having aTrue
as JS source, which ends up in an errore on frontendUSE_DJANGO_JQUERY
theJQUERY_URL
should be a falsy value different fromFalse
(ie: empty string, 0,None
, etc...)JQUERY_URL=True
will make this package use the Google CDN, while this works if the settings is not definedSome tests over this feature are required and also the docs should be more accurate.
The text was updated successfully, but these errors were encountered: