Skip to content

Commit

Permalink
Properly fix the download button
Browse files Browse the repository at this point in the history
All other <button> elements were already handled by the JS script
so the choice was made to drop the onclick tags on them. Sadly, the
download button was missed. This commit properly fixes that.
  • Loading branch information
sigv committed Mar 19, 2016
1 parent 1815955 commit 9c2b192
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _includes/scripts.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
</table>
</form>
<div class="downloadbuttons">
<button id="bdownload" class="mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect mdl-button--colored" onclick="javascript:downloadSubmit();" disabled><i class="material-icons">file_download</i></button>
<button id="bdownload" class="mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect mdl-button--colored" disabled><i class="material-icons">file_download</i></button>
<div id="github-latest"><div id="github-progressbar" class="mdl-progress mdl-js-progress mdl-progress__indeterminate progress-demo"></div><span class="mdl-typography--caption-color-contrast">querying GitHub API...</span></div>
<button id="bversion" class="mdl-button mdl-js-button mdl-button--accent" disabled>Version Information</button><br />
<button id="bmd5" class="mdl-button mdl-js-button mdl-button--accent" disabled>MD5 Checksum</button><br />
Expand Down

0 comments on commit 9c2b192

Please sign in to comment.