Skip to content

Commit

Permalink
Merge pull request #89 from jsnajdr/content-primary-fix
Browse files Browse the repository at this point in the history
Issue #88: Change type='content-primary' to 'content' on 'browser' elements
  • Loading branch information
janodvarko authored Jan 4, 2017
2 parents 5c23de5 + 71dd337 commit b9d01f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions chrome/content/connections-window.xul
Original file line number Diff line number Diff line change
Expand Up @@ -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"/>
Expand Down
5 changes: 2 additions & 3 deletions chrome/content/inspector-window.xul
Original file line number Diff line number Diff line change
Expand Up @@ -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"/>
Expand All @@ -53,7 +52,7 @@
const { inspectorWindowName } = window.arguments[0];
document.title += ` - ${inspectorWindowName}`;
}
]]>
</script>

Expand Down

0 comments on commit b9d01f5

Please sign in to comment.