Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Conflict of Interest boilerplate #229

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion assets/css/table.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,14 @@ table.comparison-table .date {
flex-direction: row;
display: flex;
}
#issueBanner {
#issueBanner, #coiBanner {
font-style: italic;
font-size: 16px;
}
#coiBanner {
border-bottom: 1px lightgray solid;
text-align: center;
display: block;
}
#navBanner {
font-weight: bold;
Expand Down
6 changes: 6 additions & 0 deletions scripts/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,12 @@ const content = (results, jsonFilename, title, nightly, incognito, testMyBrowser
<div class="middle-heading">Open-source tests of web browser privacy.</div>
<div class="right-heading">Updated ${results.timeStarted ? dateString(results.timeStarted) : '??'}</div>
</div>
<div class="banner" id="coiBanner">
<div>
<strong>Conflict of Interest statement</strong>: I am an employee of Brave Software, the developer of Brave Browser, which is one of the browsers listed on this site.
While I strive to provide fair and unbiased information, <a href="/about#full-disclosure-and-transparency">my affiliation</a> may influence my&nbsp;perspective.
</div>
</div>
<div class="banner" id="navBanner">
<div class="navItem ${!incognito && !nightly && results.platform !== 'Android' && results.platform !== 'iOS' ? 'selectedItem' : ''}">
<a href=".">Desktop browsers</a>
Expand Down