Skip to content

Commit

Permalink
Move status below buttons again
Browse files Browse the repository at this point in the history
  • Loading branch information
wiiaboo committed Jun 2, 2016
1 parent 0388e43 commit 86ee79d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions css/options.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,7 @@ label.radio {
cursor: pointer;
color: #000;
}
#status {
display: block;
height: 1.5em;
}
2 changes: 1 addition & 1 deletion options.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ <h2>WaniKani Notifier</h2>
</div>

<div id="buttons">
<div id="status">&nbsp;</div>
<button id="save">Save</button> <button id="reset">Reset</button>
<div id="status"></div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion options.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function show_status(status) {
var statusEl = document.getElementById('status');
statusEl.textContent = status.toString();
setTimeout(function() {
statusEl.textContent = '&nbsp;';
statusEl.textContent = '';
}, 4000);
}

Expand Down

0 comments on commit 86ee79d

Please sign in to comment.