--Improves platform detection for linux on /get-dash/index.html

--Adds friendly "platform not detected" message styled with callout.
--Hardens "download button" init code and removes unnecessary execution
--console-log cleanup
This commit is contained in:
Chuck Williams 2017-01-31 23:09:13 -07:00
parent e3e3aeb6e4
commit df757d920c
5 changed files with 63 additions and 50 deletions

View file

@ -1,6 +1,6 @@
{% assign desktop-os-collection = site.data.wallets-collection | where:"type","desktop" | group_by:"os" %}
{% assign wallet-collection-by-os = site.data.wallets-collection | group_by:"os" %}
<script>
var walletsCollectionByOs = {{ desktop-os-collection | jsonify }};
var walletsCollectionByOs = {{ wallet-collection-by-os | jsonify }};
console.log('walletsCollectionByOs : ' , walletsCollectionByOs );
</script>