Skip to content

Commit e26a918

Browse files
author
Daniel Herzog
committed
Review fixes
1 parent 60e659a commit e26a918

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

src/network/network_request_crafting_view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
window.cls = window.cls || {};
1+
window.cls = window.cls || {};
22

33
/**
44
* @constructor

src/network/network_service.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,6 @@ cls.NetworkLogger = function()
277277

278278
if (remove_from_allocated_after_update)
279279
delete ctx.allocated_res_ids[data.resourceID];
280-
281280
};
282281
this._on_responsefinished_bound = this._on_responsefinished.bind(this);
283282

@@ -588,7 +587,7 @@ cls.RequestContextPrototype = function()
588587
logger_entry = new cls.NetworkLoggerEntry(id, event.resourceID, event.documentID, this.get_starttime());
589588
this._logger_entries.push(logger_entry);
590589
// Store the id in the list of entries in the window_context
591-
var window_context = (event.windowID && this.get_window_context(event.windowID, true));
590+
var window_context = event.windowID && this.get_window_context(event.windowID, true);
592591
if (window_context)
593592
window_context.entry_ids.push(id);
594593
}

src/network/network_view.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ cls.NetworkLogView = function(id, name, container_class, html, default_handler,
6363
{
6464
if (this._type_filters)
6565
ctx.set_filters(this._type_filters);
66-
6766
this._render_main_view(this._container);
6867
this.text_search.update_search();
6968
}
@@ -669,9 +668,7 @@ cls.NetworkLogView = function(id, name, container_class, html, default_handler,
669668
this._on_context_removed_bound = function(message)
670669
{
671670
if (message.context_type === cls.NetworkLogger.CONTEXT_TYPE_LOGGER)
672-
{
673671
this.update();
674-
}
675672
}.bind(this);
676673

677674
this._init = function(id, name, container_class, html, default_handler)

0 commit comments

Comments
 (0)