Fixed dynamic script function.

This commit is contained in:
Jonathan Garbee 2015-01-14 14:59:46 -05:00
Родитель 676a6469ff
Коммит b2a5aed33f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -160,7 +160,7 @@ Variables</b> panels in the right-hand side bar.</p>
<script>
function loadDynamicScript() {
var request = new XMLHttpRequest();
request.open('GET','https://developers.google.com/chrome-developer-tools/docs/javascript-debugging/dynamicScript.js', true);
request.open('GET','https://developer.chrome.com/devtools/docs/javascript-debugging/dynamicScript.js', true);
request.send();
request.onreadystatechange = function() {
if (request.readyState != 4)