We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77aa47a commit 22df01cCopy full SHA for 22df01c
debug_toolbar/static/debug_toolbar/js/toolbar.js
@@ -226,7 +226,7 @@ const djdt = {
226
const handle = document.getElementById("djDebugToolbarHandle");
227
// set handle position
228
const handleTop = Math.min(
229
- localStorage.getItem("djdt.top") || 0,
+ localStorage.getItem("djdt.top") || 265,
230
window.innerHeight - handle.offsetWidth
231
);
232
handle.style.top = handleTop + "px";
docs/changes.rst
@@ -17,6 +17,8 @@ Pending
17
``django.contrib.admindocs.utils.get_view_name``.
18
* Switched from black to the `ruff formatter
19
<https://astral.sh/blog/the-ruff-formatter>`__.
20
+* Changed the default position of the toolbar from top to the upper top
21
+ position.
22
23
4.2.0 (2023-08-10)
24
------------------
0 commit comments