Benoss / django-elasticsearch-debug-toolbar

A Django Debug Toolbar panel for Elasticsearch
https://pypi.python.org/pypi/django-elasticsearch-debug-toolbar/
MIT License
29 stars 19 forks source link

Added Django Debug Toolbar 1.10+ support #10

Closed alexgmin closed 5 years ago

alexgmin commented 5 years ago

Replaced jQuery code with native JS because Django Debug Toolbar removed jQuery in 1.10.

Moved inline javascript to an external file, so is executed after fetching it with ajax.

theY4Kman commented 5 years ago

Heads-up: a line must be added to MANIFEST.in to include the external JS — otherwise, it won't be packaged and installed. Something like recursive-include elastic_panel/static *

alexgmin commented 5 years ago

Heads-up: a line must be added to MANIFEST.in to include the external JS — otherwise, it won't be packaged and installed. Something like recursive-include elastic_panel/static *

Done, thank you.