1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-05 11:37:01 +02:00

Use string template

This commit is contained in:
Raymond Hill 2022-06-03 12:27:51 -04:00
parent 59d296f8a3
commit 1c090f0fae
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -812,7 +812,7 @@ vAPI.setIcon = (( ) => {
browser.browserAction.onClicked.addListener(function(tab) {
vAPI.tabs.open({
select: true,
url: 'popup-fenix.html?tabId=' + tab.id + '&responsive=1'
url: `popup-fenix.html?tabId=${tab.id}&responsive=1`,
});
});