Restore BROWSER_NEW_TAB_URL check in Basilisk.

This resolves #1066
This commit is contained in:
wolfbeast 2019-05-02 02:55:53 +02:00 committed by Roy Tam
commit 87dabd6682

View file

@ -34,7 +34,7 @@ var gBidiUI = false;
* Determines whether the given url is considered a special URL for new tabs.
*/
function isBlankPageURL(aURL) {
return aURL == "about:blank" || aURL == "about:newtab" || aURL == "about:logopage";
return aURL == "about:blank" || aURL == BROWSER_NEW_TAB_URL || aURL == "about:logopage";
}
function getBrowserURL()