Made buttons on mobile not close the menu.

This commit is contained in:
Ajay Ramachandran
2020-02-19 00:10:05 -05:00
parent 7dc8a99247
commit 2039bfa081

View File

@@ -866,7 +866,12 @@ function createButton(baseID, title, callback, imageName, isDraggable=false): bo
newButton.style.padding = "0";
}
newButton.setAttribute("title", chrome.i18n.getMessage(title));
newButton.addEventListener("click", callback);
newButton.addEventListener("click", (event: Event) => {
callback();
// Prevents the contols from closing when clicked
if (onMobileYouTube) event.stopPropagation();
});
// Image HTML
let newButtonImage = document.createElement("img");