Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: devtools.js

Issue 29539835: Noissue - Check for devtools.panels API support (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Patch Set: Created Sept. 8, 2017, 7:11 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: devtools.js
===================================================================
--- a/devtools.js
+++ b/devtools.js
@@ -21,17 +21,17 @@
chrome.runtime.sendMessage(
{
type: "prefs.get",
key: "show_devtools_panel"
},
enabled =>
{
- if (enabled)
+ if (enabled && "panels" in chrome.devtools)
Sebastian Noack 2017/09/08 20:29:06 There should be a comment mentioning to the effect
Manish Jethani 2017/09/08 21:19:54 Done.
{
chrome.devtools.panels.create(
"Adblock Plus",
"icons/detailed/abp-48.png",
"devtools-panel.html",
panel =>
{
panel.onShown.addListener(window =>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld