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

Side by Side Diff: popup.js

Issue 29785555: Issue 6684 - Issue Reporter Active Tab Screenshot (Closed)
Patch Set: solved all nitpicks Created May 23, 2018, 3:04 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 { 96 {
97 window.clearTimeout(activateClickHide.timeout); 97 window.clearTimeout(activateClickHide.timeout);
98 activateClickHide.timeout = null; 98 activateClickHide.timeout = null;
99 } 99 }
100 document.body.classList.remove("clickhide-active"); 100 document.body.classList.remove("clickhide-active");
101 browser.tabs.sendMessage(tab.id, {type: "composer.content.finished"}); 101 browser.tabs.sendMessage(tab.id, {type: "composer.content.finished"});
102 } 102 }
103 103
104 function reportIssue() 104 function reportIssue()
105 { 105 {
106 browser.tabs.create({ 106 browser.tabs.captureVisibleTab(
107 url: browser.runtime.getURL("/issue-reporter.html?" + tab.id) 107 null,
108 }).then(() => 108 {format: "png"},
109 { 109 screenshot =>
110 window.close(); 110 {
111 }); 111 // setup a listener to provide once tab url
112 // and base64 screenshot data once asked
113 browser.runtime.onMessage.addListener(
114 function onMessage(event)
115 {
116 if (event.type == "issue-reporter")
117 {
118 browser.runtime.onMessage.removeListener(onMessage);
119 return Promise.resolve({url: tab.url, screenshot});
120 }
121 }
122 );
123
124 browser.tabs.create({
125 active: true,
126 url: browser.runtime.getURL("/issue-reporter.html?" + tab.id)
127 });
128 }
129 );
112 } 130 }
113 131
114 function toggleCollapse(event) 132 function toggleCollapse(event)
115 { 133 {
116 let collapser = event.currentTarget; 134 let collapser = event.currentTarget;
117 let collapsible = document.getElementById(collapser.dataset.collapsible); 135 let collapsible = document.getElementById(collapser.dataset.collapsible);
118 collapsible.classList.toggle("collapsed"); 136 collapsible.classList.toggle("collapsed");
119 togglePref(collapser.dataset.option); 137 togglePref(collapser.dataset.option);
120 } 138 }
121 139
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 { 350 {
333 if (event.target.id == "notification-optout") 351 if (event.target.id == "notification-optout")
334 setPref("notifications_ignoredcategories", true); 352 setPref("notifications_ignoredcategories", true);
335 353
336 notificationElement.hidden = true; 354 notificationElement.hidden = true;
337 browser.runtime.sendMessage({type: "notifications.clicked"}); 355 browser.runtime.sendMessage({type: "notifications.clicked"});
338 } 356 }
339 }, true); 357 }, true);
340 }); 358 });
341 }); 359 });
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld