figure out why it isn't launching into containers like on desktop
This commit is contained in:
@@ -35,5 +35,5 @@ function isDroid() {
|
||||
}
|
||||
|
||||
function notClosable() {
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
14
scrub.js
14
scrub.js
@@ -110,7 +110,7 @@ var contextSetup = async function(requestDetails) {
|
||||
function Create(currentTab) {
|
||||
function onCreated(tab) {
|
||||
function closeOldTab(tab) {
|
||||
if (!closable()) {
|
||||
if (!notClosable()) {
|
||||
if (tabId.id != tab.id) {
|
||||
console.log(
|
||||
"(isolate) Closing old, un-isolated tab",
|
||||
@@ -150,7 +150,7 @@ var contextSetup = async function(requestDetails) {
|
||||
function Create(currentTab) {
|
||||
function onCreated(tab) {
|
||||
function closeOldTab(tab) {
|
||||
if (!closable()) {
|
||||
if (!notClosable()) {
|
||||
if (tabId.id != tab.id) {
|
||||
console.log(
|
||||
"(isolate) Closing old, un-isolated tab",
|
||||
@@ -188,7 +188,7 @@ var contextSetup = async function(requestDetails) {
|
||||
function Create(currentTab) {
|
||||
function onCreated(tab) {
|
||||
function closeOldTab(tab) {
|
||||
if (!closable()) {
|
||||
if (!notClosable()) {
|
||||
if (tabId.id != tab.id) {
|
||||
console.log(
|
||||
"(isolate) Closing old, un-isolated tab",
|
||||
@@ -226,7 +226,7 @@ var contextSetup = async function(requestDetails) {
|
||||
function Create(currentTab) {
|
||||
function onCreated(tab) {
|
||||
function closeOldTab(tab) {
|
||||
if (!closable()) {
|
||||
if (!notClosable()) {
|
||||
if (tabId.id != tab.id) {
|
||||
console.log(
|
||||
"(isolate) Closing old, un-isolated tab",
|
||||
@@ -264,7 +264,7 @@ var contextSetup = async function(requestDetails) {
|
||||
function Create(currentTab) {
|
||||
function onCreated(tab) {
|
||||
function closeOldTab(tab) {
|
||||
if (!closable()) {
|
||||
if (!notClosable()) {
|
||||
if (tabId.id != tab.id) {
|
||||
console.log(
|
||||
"(isolate) Closing old, un-isolated tab",
|
||||
@@ -302,7 +302,7 @@ var contextSetup = async function(requestDetails) {
|
||||
function Create(currentTab) {
|
||||
function onCreated(tab) {
|
||||
function closeOldTab(tab) {
|
||||
if (!closable()) {
|
||||
if (!notClosable()) {
|
||||
if (tabId.id != tab.id) {
|
||||
console.log(
|
||||
"(isolate) Closing old, un-isolated tab",
|
||||
@@ -345,7 +345,7 @@ var contextSetup = async function(requestDetails) {
|
||||
function Create(currentTab) {
|
||||
function onCreated(tab) {
|
||||
function closeOldTab(tab) {
|
||||
if (!closable()) {
|
||||
if (!notClosable()) {
|
||||
if (tabId.id != tab.id) {
|
||||
console.log(
|
||||
"(isolate) Closing old, un-isolated tab",
|
||||
|
||||
Reference in New Issue
Block a user