Skip to content
This repository has been archived by the owner on Aug 13, 2018. It is now read-only.

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
eliihen committed Feb 2, 2017
1 parent 224066c commit 227eec7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion chrome/content/network-content-script.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
*/
if (EVENTS.REQUEST_ITEM_CLICKED) {
window.on(EVENTS.REQUEST_ITEM_CLICKED, (_, e, item) => {
if (e.target.closest(".request-list-item.websocket .requests-menu-method")) {
let target = ".request-list-item.websocket .requests-menu-method";
if (e.target.closest(target)) {
navigateToWebSocketPanel(item.id);
}
});
Expand Down

0 comments on commit 227eec7

Please sign in to comment.