Skip to content

Commit

Permalink
Re-initialisation of Laravel (something just disappeared..)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamicollo committed Aug 21, 2014
1 parent f5020c3 commit 73258ad
Show file tree
Hide file tree
Showing 11 changed files with 510 additions and 409 deletions.
45 changes: 25 additions & 20 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions public/packages/maximebf/php-debugbar/debugbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -461,13 +461,18 @@ if (typeof(PhpDebugBar) == 'undefined') {

// dragging of resize handle
var dragging = false;
var min_h = 40;
var max_h = $(window).height() - this.$header.height() - 10;
this.$resizehdle.on('mousedown', function(e) {
var orig_h = $body.height(), pos_y = e.pageY;
dragging = true;

$body.parents().on('mousemove', function(e) {
if (dragging) {
var h = orig_h + (pos_y - e.pageY);
// Respect the min/max values
h = Math.min(h, max_h);
h = Math.max(h, min_h);
$body.css('height', h);
localStorage.setItem('phpdebugbar-height', h);
self.recomputeBottomOffset();
Expand Down

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 73258ad

Please sign in to comment.