aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/static
AgeCommit message (Collapse)Author
2014-04-25Merge pull request #587 from living180/work_around_chrome_mousemoveAymeric Augustin
Work around spurious mousemove on Chrome.
2014-04-25Make the pain go away.Aymeric Augustin
Fix #581, #544, #541, #535 and a few others.
2014-04-25Work around spurious mousemove on Chrome.Daniel Harding
When clicking on an element in Chrome, spurious mousemove events can be generated when the cursor hasn't actually moved. This can prevent the toolbar from being shown when the handle is clicked because the code sees the mousemove event and thinks a handle drag is happening. Work around this by only running the handle drag code if the cursor has moved since the mousedown event.
2014-02-25Propagate mouseup events when not dragging toolbarDavid Sutherland
In Chrome (this does not affect Firefox) onchange events on multi-selects are not fired all of the time e.g. with the following template: <body> <select multiple="multiple" onchange="console.log('clicked');"> <option value="1">1</option> </select> </body> Ctrl click on the option and view the js log. many of the events will not register. Therefore stop propagation and prevent default action only when handle is dragged.
2014-02-13Optimize used PNGs. Remove unused PNG and GIF.Aymeric Augustin
2014-02-13Add loading animation for panels. Fix #488.Aymeric Augustin
2014-02-05Don't unbind all mousemove eventsRivo Laks
There was no namespace specified for mousemove event, which caused all document's mousemove event handlers to be removed.
2014-01-15Remove dependency on jquery-cookie pluginDan Farrelly
Replace plugin with simpler get and set methods.
2013-11-29Fix JS regression in the template panel.Aymeric Augustin
It was introduced during last week-end's large renaming.
2013-11-24Rename storage to store to avoid conflicting with Django terminology.Aymeric Augustin
2013-11-23Stop bundling jQuery.Aymeric Augustin
2013-11-23Fix incompatibility with jQuery 2.Aymeric Augustin
Fix #463.
2013-11-18Add an option to collapse the toolbar by default.Aymeric Augustin
Fix #258.
2013-11-16Move JS specific to the SQL panel to its own file.Aymeric Augustin
2013-11-16Stop bothering with CSS compression.Aymeric Augustin
For the same reasons we stopped compressing JS.
2013-11-15Move some panel-specific javascript in specific files.Aymeric Augustin
2013-11-15Make panels behave more like Django middleware.Aymeric Augustin
2013-11-14Improve code that ensure panels are loaded only once.Aymeric Augustin
2013-11-13Load panels content only one.Aymeric Augustin
.empty() wasn't working like I expected.
2013-11-12Move store/fetch logic inside the DebugToolbar class.Aymeric Augustin
2013-11-11Preserve handle position when the toolbar is shown.Aymeric Augustin
2013-11-10Make the handle draggable.Aymeric Augustin
Fix #278.
2013-11-10Load the content of panels dynamically.Aymeric Augustin
This should drastically reduce the overhead of the browser toolbar when a page has a complex template structure or many SQL queries. This change is backwards-incompatible for third-party panels because it changes the signature of __init__. The JavaScript could probably be improved; I'm outside my comfort zone.
2013-11-05Addressing review commentsDavid Baumgold
2013-11-05Change how JS libs are loadedDavid Baumgold
This change makes Django-Debug-Toolbar use the existing version of jQuery on the page if one exists, and only loads jQuery if it isn't already loaded. It also explicitly loads the jQuery cookie plugin and the toolbar script as separate files. Finally, we are no longer compressing/minimizing scripts; this is for debug purposes, and presumably will not be served in production.
2013-11-05whitespace-onlyDavid Baumgold
convert tabs to spaces
2013-11-05Wrap toolbar.js in AMD define() if it existsDavid Baumgold
2013-11-05Update jQuery Cookie Plugin to 1.4.0David Baumgold
2013-11-01Add a checkbox to toggle panels from the frontend.Aymeric Augustin
Fix #35.
2013-10-31Allow the panel to be scrolled when the screen is shorter than it's height.tschilling
2013-10-27Improve display of variables in RequestVars panel.Aymeric Augustin
Refs #418.
2013-10-16Remove active class when closing panel by pressing escape keyAlasdair Nicol
Fixes #404
2013-05-20Changed load timing trick to 0 instead of 1000msRoger Barnes
2013-05-01Updated browser timing javascript to use jQuery, tidied up wording and ↵Roger Barnes
formatting, and minified js
2013-05-01Moved js to toolbar.jsRoger Barnes
2013-04-29Fix default button stylesDavid Cramer
2013-04-29Remove list style on statsDavid Cramer
2013-04-29Various cleanup for some CSS overridesDavid Cramer
2013-04-29Remove text shadow from elementsDavid Cramer
2013-04-24Merge branch 'master' of ↵Vladislav Poluhin
https://github.com/django-debug-toolbar/django-debug-toolbar into sql-panel-refactor Conflicts: debug_toolbar/static/debug_toolbar/css/toolbar.min.css debug_toolbar/views.py
2013-04-23Replace spaces to tabsVladislav Poluhin
2013-04-23Query duration column centeredVladislav Poluhin
2012-12-27Use POST instead GET, cuz GET is limitedVladislav Poluhin
2012-10-06Fixed CSS according to standartsAnton Ryzhov
2012-08-27Ran minification.Jannis Leidel
2012-08-27Merge branch 'background-image-404' of ↵Jannis Leidel
https://github.com/anton-ryzhov/django-debug-toolbar into anton-ryzhov-background-image-404
2012-08-20use links to static files rather than direct inclusion, Fixes #307Thomas Grainger