Skip to content

Commit de5ea02

Browse files
committed
Merge branch 'release/v0.1.1'
2 parents b8753d2 + 392cf4e commit de5ea02

File tree

8 files changed

+218
-33
lines changed

8 files changed

+218
-33
lines changed

etherep/dist/css/etherep.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

etherep/dist/index.html

+15-7
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@
1313
<header class="hero">
1414
<div class="hero-body">
1515
<div class="container">
16-
<h1 class="title">
17-
etherep
18-
<div class="scale"><img src="images/scale.svg"></div>
19-
</h1>
20-
<h2 class="subtitle">Simple Ethereum reputation by address</h2>
16+
<a href="https://etherep.com">
17+
<h1 class="title">
18+
etherep
19+
<div class="scale"><img src="images/scale.svg"></div>
20+
</h1>
21+
<h2 class="subtitle">Simple Ethereum reputation by address</h2>
22+
</a>
2123
</div>
2224
</div>
2325
</header>
@@ -126,7 +128,7 @@ <h2 class="title is-2">Rate</h2>
126128
<button class="button is-warning rating-button" onclick="selectRating(this, -1)">-1</button>
127129
</li>
128130
<li class="control show">
129-
<button class="button is-info rating-button" onclick="selectRating(this, 0)">0</button>
131+
<button class="button is-info rating-button marker" onclick="selectRating(this, 0)">0</button>
130132
</li>
131133
<li class="control">
132134
<button class="button is-warning rating-button" onclick="selectRating(this, 1)">1</button>
@@ -152,8 +154,9 @@ <h2 class="title is-2">Rate</h2>
152154
</div>
153155

154156
<p id="rating-results" class="hide"></p>
157+
<p id="rating-errors" class="hide"></p>
155158

156-
<p class="help">This will charge a fee of &Xi;{{ fee }}.<sup><a href="#" onclick="etherep.showWhyFee(); return false;">Why?</a></sup></p>
159+
<p class="help">This will charge a fee of &Xi;{{ fee }}.<sup><a href="#" onclick="etherep.showWhyFee(); return false;">Why?</a></sup> You may not rate yourself. Ratings are be limited to once every {{ delayMinutes }} minutes.</p>
157160
</div>
158161
</section>
159162

@@ -204,6 +207,11 @@ <h2 class="title is-2">Rate</h2>
204207
<p class="small">Transaction: <a href="{{ etherscanLink }}" onclick="window.open(this.href); return false;">{{ transaction }}</a></p>
205208
</article>
206209
</script>
210+
<script id="tmplRatingErrors" type="text/html">
211+
<article class="errors">
212+
<p class="message">{{ errorMessage }}</p>
213+
</article>
214+
</script>
207215
<script>
208216
(function() {
209217
window.addEventListener('load', function() {

etherep/dist/js/etherep.js

+91-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

etherep/dist/js/etherep.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)