Skip to content

Commit

Permalink
Merge pull request #488 from artoonie/ranked-choices-logo
Browse files Browse the repository at this point in the history
add ranked choices logo
  • Loading branch information
artoonie authored Mar 18, 2024
2 parents f1ac9ca + f159429 commit 84a5326
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 31 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,3 @@ For both endpoints, upload with POST and modify with PUT or PATCH. Authenticated

## oembed
RCVis implements the [oembed protocol](http://www.oembed.com) with discoverability, allowing you to embed files into your website with an iframe.

## Testing
Cross-browser Testing Platform and Open Source ❤️ provided by [Sauce Labs](https://saucelabs.com).
Binary file added static/visualizer/resource_rankedchoices.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 0 additions & 24 deletions static/visualizer/resource_rankit.svg

This file was deleted.

8 changes: 4 additions & 4 deletions templates/visualizer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,14 @@ <h2 class="page-section-heading text-center text-uppercase">More Resources</h2>
<div class="container text-center">
<div class="row">
<div class="col resourceCell">
<h5>RankIt Online RCV Polls</h5>
<a href="https://www.rankit.vote">
<img class="resourceCellImage" data-src="{% static 'visualizer/resource_rankit.svg' %}" width="300px" alt="Rankit.vote icon" loading="lazy">
<h5>RankedChoices Online RCV Polls</h5>
<a href="https://www.rankedchoices.com">
<img class="resourceCellImage" data-src="{% static 'visualizer/resource_rankedchoices.png' %}" width="300px" alt="RankedChoices icon" loading="lazy">
<br/>
rankit.vote
</a>
<div class="descriptors">
RankIt is FairVote's RCV online polling tool. You can use it to elect a leader in your local student organization, or just ask your friends which movie they'd like to watch next.
RankedChoices is a free RCV online polling tool. You can use it to elect a leader in your local student organization, or just ask your friends which movie they'd like to watch next.
</div>
</div>
<div class="col resourceCell">
Expand Down
3 changes: 3 additions & 0 deletions visualizer/tests/liveServerTestBaseClass.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ def _assert_log_len(self, num):
# This happens on the chromedriver used on 2023-05-18
log = [l for l in log if 'ch-ua-form-factor' not in l['message']]

# This happens on the chromedriver used on 2024-03-18
log = [l for l in log if 'Third-party cookie will be blocked' not in l['message']]

# This happens on saucelabs
log = [l for l in log if 'favicon.ico - Failed to load resource' not in l['message']]

Expand Down

0 comments on commit 84a5326

Please sign in to comment.