Skip to content
Merged
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
7 changes: 6 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -362,9 +362,10 @@ class App extends Component {

acceptURLVariables () {
const { location: { search: queryString } } = this.props;
const { fromAdSet, showEditPoliticianNoticeSet } = this.state;
const { fromAdSet, showEditPoliticianNoticeSet, showOfficeBannerAboveHeaderSet } = this.state;
const query = new URLSearchParams(queryString);
const fromAd = query.get('ad');
const showOfficeBannerAboveHeader = query.get('office_intro');
const showEditPoliticianNotice = query.get('show_edit_politician_notice');
if (fromAd === '1' && !fromAdSet) {
this.setState({ fromAdSet: true });
Expand All @@ -375,6 +376,10 @@ class App extends Component {
AppObservableStore.setShowNotificationBannerAboveHeader(true);
Cookies.set('politician_url_variable_used', '1', { expires: 15, path: '/' });
}
if (showOfficeBannerAboveHeader === '1' && !showOfficeBannerAboveHeaderSet) {
this.setState({ showOfficeBannerAboveHeaderSet: true });
AppObservableStore.setShowOfficeBannerAboveHeader(true);
}
}

bypass2FA () {
Expand Down
Binary file added src/img/pdf/We-Vote-USA-c4-EIN-CP575-20160111.pdf
Binary file not shown.
Binary file added src/img/pdf/We-Vote-c3-EIN-CP575-20150106.pdf
Binary file not shown.
Binary file added src/img/pdf/We-Vote-c3-irsApproval-20151105.pdf
Binary file not shown.
50 changes: 43 additions & 7 deletions src/js/common/components/FAQBody.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,44 @@ export default class FAQBody extends Component {
candidate or party.
We are not affiliated with WeVoteProject.org or WeVoteUSA.com.
<br />
<br />
{isWebApp() && (
<>
<br/>
<strong>Official Formation Documents?</strong>
<br/>
<Suspense fallback={<></>}>
<OpenExternalWebSite
linkIdAttribute="c3IRSApproval"
url="https://wevote.us/img/pdf/We-Vote-c3-irsApproval-20151105.pdf"
target="_blank"
body="We-Vote-c3-irsApproval-20151105.pdf"
trackingOn
/>
</Suspense>
<br/>
<Suspense fallback={<></>}>
<OpenExternalWebSite
linkIdAttribute="c3EIN"
url="https://wevote.us/img/pdf/We-Vote-c3-EIN-CP575-20150106.pdf"
target="_blank"
body="We-Vote-c3-EIN-CP575-20150106.pdf"
trackingOn
/>
</Suspense>
<br/>
<Suspense fallback={<></>}>
<OpenExternalWebSite
linkIdAttribute="c4EIN"
url="https://wevote.us/img/pdf/We-Vote-USA-c4-EIN-CP575-20160111.pdf"
target="_blank"
body="We-Vote-USA-c4-EIN-CP575-20160111.pdf"
trackingOn
/>
</Suspense>
</>
)}
<br/>
<br/>

<strong>No really, who are you?</strong>
<br />
Expand All @@ -174,7 +211,7 @@ export default class FAQBody extends Component {
</Suspense>
, and join us! We use our engineering, design, marketing, and other
skills to build
WeVote. We are over 900 people (120+ active every week) who have donated 75,000+
WeVote. We are over 1,000 people (160+ active every week) who have donated 75,000+
volunteer hours, including
{' '}
<Suspense fallback={<></>}>
Expand Down Expand Up @@ -216,12 +253,12 @@ export default class FAQBody extends Component {
<br />
WeVote
<br />
1440 Broadway Ste 200
<br />
#158
1440 Broadway Ste 200, #158
<br />
Oakland, CA 94612
<br />
707-506-6441
<br />
<br />

<strong>How does WeVote work?</strong>
Expand Down Expand Up @@ -334,8 +371,7 @@ export default class FAQBody extends Component {
<br />
Expenses include server costs ($600 - $2,500 per month), data fees
(~$40,000 per year), collaboration tools and other hard costs.
In the future, we might hire some key staff with donations, for the
smooth operation of WeVote.
We are 100% volunteer, and don&apos;t have any paid staff.
<br />
<br />

Expand Down