Skip to content

Commit

Permalink
Update Dbgr.php
Browse files Browse the repository at this point in the history
fix paths of new Tracy assets
  • Loading branch information
noximo authored May 6, 2019
1 parent 1741beb commit 5c5e783
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Dbgr.php
Original file line number Diff line number Diff line change
Expand Up @@ -1050,13 +1050,13 @@ private static function getStyles(): string
$styles = '';
$path = __DIR__ . DIRECTORY_SEPARATOR;
$styles .= '<style>';
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/assets/Toggle/toggle.css');
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/assets/Dumper/dumper.css');
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/Toggle/toggle.css');
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/Dumper/assets/dumper.css');
$styles .= FileSystem::read($path . 'dumper.css');
$styles .= '</style>';
$styles .= '<script>';
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/assets/Toggle/toggle.js');
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/assets/Dumper/dumper.js');
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/Toggle/toggle.js');
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/Dumper/assets/dumper.js');
$styles .= FileSystem::read($path . 'dumper.js');
$styles .= '</script>';

Expand Down

0 comments on commit 5c5e783

Please sign in to comment.