[WebProfilerBundle] Variables only used once

This commit is contained in:
alexandresalome 2011-09-17 14:48:42 +02:00
parent 847c665e69
commit c6b15b37db

View File

@ -2,22 +2,20 @@
<script type="text/javascript">/*<![CDATA[*/
(function () {
var wdt, xhr;
var url = '{{ path("_wdt", { "token": token }) }}';
var urlPanel = '{{ path("_profiler", { "token": token }) }}';
wdt = document.getElementById('sfwdt{{ token }}');
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else {
xhr = new ActiveXObject('Microsoft.XMLHTTP');
}
xhr.open('GET', url, true);
xhr.open('GET', '{{ path("_wdt", { "token": token }) }}', true);
xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
xhr.onreadystatechange = function(state) {
if (4 === xhr.readyState && 200 === xhr.status && -1 !== xhr.responseText.indexOf('sf-toolbarreset')) {
wdt.innerHTML = xhr.responseText;
wdt.style.display = 'block';
} else if (4 === xhr.readyState && xhr.status != 200) {
confirm('An error occured while loading the debug toolbar ('+xhr.status+': '+xhr.statusText+') .\n\nDo you want to open the page ?') && (window.location = urlPanel);
confirm('An error occured while loading the debug toolbar ('+xhr.status+': '+xhr.statusText+') .\n\nDo you want to open the page ?') && (window.location = '{{ path("_profiler", { "token": token }) }}');
}
};
xhr.send('');