| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-04-25 | Merge pull request #587 from living180/work_around_chrome_mousemove | Aymeric Augustin | |
| Work around spurious mousemove on Chrome. | |||
| 2014-04-25 | Make the pain go away. | Aymeric Augustin | |
| Fix #581, #544, #541, #535 and a few others. | |||
| 2014-04-25 | Work 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-25 | Propagate mouseup events when not dragging toolbar | David 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-13 | Optimize used PNGs. Remove unused PNG and GIF. | Aymeric Augustin | |
| 2014-02-13 | Add loading animation for panels. Fix #488. | Aymeric Augustin | |
| 2014-02-05 | Don't unbind all mousemove events | Rivo Laks | |
| There was no namespace specified for mousemove event, which caused all document's mousemove event handlers to be removed. | |||
| 2014-01-15 | Remove dependency on jquery-cookie plugin | Dan Farrelly | |
| Replace plugin with simpler get and set methods. | |||
| 2013-11-29 | Fix JS regression in the template panel. | Aymeric Augustin | |
| It was introduced during last week-end's large renaming. | |||
| 2013-11-24 | Rename storage to store to avoid conflicting with Django terminology. | Aymeric Augustin | |
| 2013-11-23 | Stop bundling jQuery. | Aymeric Augustin | |
| 2013-11-23 | Fix incompatibility with jQuery 2. | Aymeric Augustin | |
| Fix #463. | |||
| 2013-11-18 | Add an option to collapse the toolbar by default. | Aymeric Augustin | |
| Fix #258. | |||
| 2013-11-16 | Move JS specific to the SQL panel to its own file. | Aymeric Augustin | |
| 2013-11-16 | Stop bothering with CSS compression. | Aymeric Augustin | |
| For the same reasons we stopped compressing JS. | |||
| 2013-11-15 | Move some panel-specific javascript in specific files. | Aymeric Augustin | |
| 2013-11-15 | Make panels behave more like Django middleware. | Aymeric Augustin | |
| 2013-11-14 | Improve code that ensure panels are loaded only once. | Aymeric Augustin | |
| 2013-11-13 | Load panels content only one. | Aymeric Augustin | |
| .empty() wasn't working like I expected. | |||
| 2013-11-12 | Move store/fetch logic inside the DebugToolbar class. | Aymeric Augustin | |
| 2013-11-11 | Preserve handle position when the toolbar is shown. | Aymeric Augustin | |
| 2013-11-10 | Make the handle draggable. | Aymeric Augustin | |
| Fix #278. | |||
| 2013-11-10 | Load 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-05 | Addressing review comments | David Baumgold | |
| 2013-11-05 | Change how JS libs are loaded | David 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-05 | whitespace-only | David Baumgold | |
| convert tabs to spaces | |||
| 2013-11-05 | Wrap toolbar.js in AMD define() if it exists | David Baumgold | |
| 2013-11-05 | Update jQuery Cookie Plugin to 1.4.0 | David Baumgold | |
| 2013-11-01 | Add a checkbox to toggle panels from the frontend. | Aymeric Augustin | |
| Fix #35. | |||
| 2013-10-31 | Allow the panel to be scrolled when the screen is shorter than it's height. | tschilling | |
| 2013-10-27 | Improve display of variables in RequestVars panel. | Aymeric Augustin | |
| Refs #418. | |||
| 2013-10-16 | Remove active class when closing panel by pressing escape key | Alasdair Nicol | |
| Fixes #404 | |||
| 2013-05-20 | Changed load timing trick to 0 instead of 1000ms | Roger Barnes | |
| 2013-05-01 | Updated browser timing javascript to use jQuery, tidied up wording and ↵ | Roger Barnes | |
| formatting, and minified js | |||
| 2013-05-01 | Moved js to toolbar.js | Roger Barnes | |
| 2013-04-29 | Fix default button styles | David Cramer | |
| 2013-04-29 | Remove list style on stats | David Cramer | |
| 2013-04-29 | Various cleanup for some CSS overrides | David Cramer | |
| 2013-04-29 | Remove text shadow from elements | David Cramer | |
| 2013-04-24 | Merge 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-23 | Replace spaces to tabs | Vladislav Poluhin | |
| 2013-04-23 | Query duration column centered | Vladislav Poluhin | |
| 2012-12-27 | Use POST instead GET, cuz GET is limited | Vladislav Poluhin | |
| 2012-10-06 | Fixed CSS according to standarts | Anton Ryzhov | |
| 2012-08-27 | Ran minification. | Jannis Leidel | |
| 2012-08-27 | Merge branch 'background-image-404' of ↵ | Jannis Leidel | |
| https://github.com/anton-ryzhov/django-debug-toolbar into anton-ryzhov-background-image-404 | |||
| 2012-08-20 | use links to static files rather than direct inclusion, Fixes #307 | Thomas Grainger | |
