Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Recca Tsai committed Aug 6, 2016
2 parents 1a9f27e + c23b885 commit 2b9fee6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,26 +56,27 @@ php artisan vendor:publish --provider="Recca0120\LaravelTracy\ServiceProvider"
## Config
```php
return [
'editor' => 'subl://open?url=file://%file&line=%line',
'enabled' => true,
'showBar' => true,
'accepts' => [
'text/html',
],
'editor' => 'subl://open?url=file://%file&line=%line',
'maxDepth' => 4,
'maxLength' => 1000,
'scream' => true,
'showLocation' => true,
'strictMode' => true,
'panels' => [
'routing' => true,
'database' => true,
'view' => true,
'event' => false,
'session' => true,
'request' => true,
'auth' => true,
'terminal' => true,
'routing' => true,
'database' => true,
'view' => true,
'event' => false,
'session' => true,
'request' => true,
'auth' => true,
'html-validator' => true,
'terminal' => true,
],
];
```
Expand Down
2 changes: 1 addition & 1 deletion resources/views/HtmlValidatorPanel/tab.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
<polygon fill="#ffffff" points="255.843,176.305 255.843,204.509 255.843,221.605 255.843,221.716 365.385,221.716 365.385,221.716 365.531,221.716 366.442,211.509 368.511,188.488 369.597,176.305"/>
</svg>
<span class="tracy-label">
<?php echo ($counter > 0) ? $counter.' errors' : 'pass' ?>
<?php echo ($counter > 0) ? $counter.' Errors' : 'Pass' ?>
</span>
</span>

0 comments on commit 2b9fee6

Please sign in to comment.