Skip to content

Commit 4cff42b

Browse files
committed
Update assets, integrate toc
1 parent d258319 commit 4cff42b

File tree

7 files changed

+20
-64
lines changed

7 files changed

+20
-64
lines changed

docs/assets/debugbar.css

+15-53
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/debugbar.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1815,6 +1815,7 @@ if (typeof(PhpDebugBar) == 'undefined') {
18151815
*/
18161816
setOpenHandler: function(handler) {
18171817
this.openHandler = handler;
1818+
this.openHandler.$el.attr('data-theme', this.$el.attr('data-theme'));
18181819
if (handler !== null) {
18191820
this.$openbtn.show();
18201821
} else {
@@ -2950,7 +2951,7 @@ if (typeof(PhpDebugBar) == 'undefined') {
29502951
this.$closebtn = $('<a><i class="phpdebugbar-fa phpdebugbar-fa-times"></i></a>');
29512952
this.$table = $('<tbody />');
29522953
$('<div>PHP DebugBar | Open</div>').addClass(csscls('header')).append(this.$closebtn).appendTo(this.$el);
2953-
$('<table><thead><tr><th width="150">Date</th><th width="55">Method</th><th>URL</th><th width="125">IP</th><th width="100">Filter data</th></tr></thead></table>').append(this.$table).appendTo(this.$el);
2954+
$('<table><thead><tr><th width="155">Date</th><th width="75">Method</th><th>URL</th><th width="125">IP</th><th width="100">Filter data</th></tr></thead></table>').append(this.$table).appendTo(this.$el);
29542955
this.$actions = $('<div />').addClass(csscls('actions')).appendTo(this.$el);
29552956

29562957
this.$closebtn.on('click', function() {

docs/collectors.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
description: Laravel Debugbar contains a lot of collectors to help you debug or profile Database Queries, Log messages, View templates, Request and Route information, etc.
33
preview_image: img/preview-usage.jpg
4-
hide:
5-
- navigation
64
---
75
!!! warning
86

docs/features.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
description: Laravel Debugbar contains features like collectors, capturing ajax requesting, browsing history etc.
33
preview_image: img/preview-features.jpg
4-
hide:
5-
- navigation
64
---
75

86
## Collectors

docs/installation.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
description: Installing Laravel Debugbar in a project is simple. Use 'composer require barryvdh/laravel-debugbar --dev' to get started now
33
preview_image: img/preview-install.jpg
4-
hide:
5-
- navigation
64
---
75

86
# Installation

docs/usage.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
description: Using Laravel Debugbar is simple. After installing, just enable Debug mode and you should be good. Read further for more options.
33
preview_image: img/preview-usage.jpg
4-
hide:
5-
- navigation
64
---
75

86
# Usage

mkdocs.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,14 @@ theme:
3636
- content.code.copy
3737
- content.action.edit
3838
- toc.follow
39+
- toc.integrate
3940
- search.highlight
4041
- meta
4142
extra_css:
4243
- assets/extra.css
43-
- assets/debugbar.css
44+
- assets/debugbar.css?v=1738314470
4445
extra_javascript:
45-
- assets/debugbar.js
46+
- assets/debugbar.js?v=1738314470
4647
markdown_extensions:
4748
- admonition
4849
- abbr

0 commit comments

Comments
 (0)