mirror of
https://github.com/maximebf/php-debugbar.git
synced 2025-01-17 13:28:35 +01:00
Fix event listener when url is object (#519)
This commit is contained in:
parent
1c2a5300cc
commit
cd5e33f3cd
@ -1207,7 +1207,9 @@ if (typeof(PhpDebugBar) == 'undefined') {
|
|||||||
var xhr = this;
|
var xhr = this;
|
||||||
this.addEventListener("readystatechange", function() {
|
this.addEventListener("readystatechange", function() {
|
||||||
var skipUrl = self.debugbar.openHandler ? self.debugbar.openHandler.get('url') : null;
|
var skipUrl = self.debugbar.openHandler ? self.debugbar.openHandler.get('url') : null;
|
||||||
if (xhr.readyState == 4 && url.indexOf(skipUrl) !== 0) {
|
var href = (typeof url === 'string') ? url : url.href;
|
||||||
|
|
||||||
|
if (xhr.readyState == 4 && href.indexOf(skipUrl) !== 0) {
|
||||||
self.handle(xhr);
|
self.handle(xhr);
|
||||||
}
|
}
|
||||||
}, false);
|
}, false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user