Skip to content
Snippets Groups Projects
Commit eec9d02c authored by Niklas Baumgardner's avatar Niklas Baumgardner
Browse files

Bug 1824140 - Only allow left click on PiP urlbar button. r=pip-reviewers,mhowell

parent ca02072b
No related branches found
No related tags found
No related merge requests found
......@@ -466,6 +466,10 @@ export var PictureInPicture = {
* @param {Event} event Event from clicking the PiP urlbar button
*/
toggleUrlbar(event) {
if (event.button !== 0) {
return;
}
let win = event.target.ownerGlobal;
let browser = win.gBrowser.selectedBrowser;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment