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

Safari: minor code fix

This commit is contained in:
Chris 2015-03-31 17:06:12 -06:00
parent 91c2d95fb1
commit 6850fa0a26

View File

@ -240,7 +240,7 @@
/******************************************************************************/
vAPI.isNoTabId = function(tabId) {
return tabId.toString() === '-1';
return tabId.toString() === this.noTabId;
};
vAPI.noTabId = '-1';