From 71dd337d9e94c4fbe8ecea14faf13a00bfd7180c Mon Sep 17 00:00:00 2001
From: Jarda Snajdr <jsnajdr@gmail.com>
Date: Wed, 4 Jan 2017 09:46:33 +0100
Subject: [PATCH] Issue #88: Change type='content-primary' to 'content' on
 'browser' elements

---
 chrome/content/connections-window.xul | 3 +--
 chrome/content/inspector-window.xul   | 5 ++---
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/chrome/content/connections-window.xul b/chrome/content/connections-window.xul
index 7199073..f0626fa 100644
--- a/chrome/content/connections-window.xul
+++ b/chrome/content/connections-window.xul
@@ -37,8 +37,7 @@
   <vbox flex="1">
 
     <!-- React UI Container -->
-    <browser id="contentFrame" type="content-primary" flex="1"
-      disablehistory="true" />
+    <browser id="contentFrame" type="content" flex="1" disablehistory="true" />
 
     <!-- Search bar -->
     <findbar id="FindToolbar" browserid="contentFrame"/>
diff --git a/chrome/content/inspector-window.xul b/chrome/content/inspector-window.xul
index 51d1189..7f377c4 100644
--- a/chrome/content/inspector-window.xul
+++ b/chrome/content/inspector-window.xul
@@ -35,8 +35,7 @@
   <vbox flex="1">
 
     <!-- Logging Output -->
-    <browser id="contentFrame" type="content-primary" flex="1"
-      disablehistory="true" />
+    <browser id="contentFrame" type="content" flex="1" disablehistory="true" />
 
     <!-- Search bar -->
     <findbar id="FindToolbar" browserid="contentFrame"/>
@@ -53,7 +52,7 @@
       const { inspectorWindowName } = window.arguments[0];
       document.title += ` - ${inspectorWindowName}`;
     }
-    
+
     ]]>
     </script>