Skip to content
This repository was archived by the owner on Jul 11, 2019. It is now read-only.

Commit 3c6fc07

Browse files
committed
Added missing var statement, removed some debugging output.
1 parent ccb2430 commit 3c6fc07

File tree

1 file changed

+3
-4
lines changed
  • Clockwork Chrome/assets/javascripts

1 file changed

+3
-4
lines changed

Clockwork Chrome/assets/javascripts/panel.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,9 @@ Clockwork.controller('PanelController', function PanelController($scope, $http)
4444
});
4545
});
4646

47-
chrome.devtools.network.onRequestFinished.addListener(function(request) {
48-
console.log(request);
49-
50-
headers = request.response.headers;
47+
chrome.devtools.network.onRequestFinished.addListener(function(request)
48+
{
49+
var headers = request.response.headers;
5150
var requestId = headers.find(function(x) { return x.name == 'X-Clockwork-Id'; });
5251
var requestVersion = headers.find(function(x) { return x.name == 'X-Clockwork-Version'; });
5352
var requestPath = headers.find(function(x) { return x.name == 'X-Clockwork-Path'; });

0 commit comments

Comments
 (0)