diff --git a/_less/screen.less b/_less/screen.less
index ceb0324d..e37288f7 100644
--- a/_less/screen.less
+++ b/_less/screen.less
@@ -2621,7 +2621,7 @@ h2 .rssicon{
margin-top:10px;
padding:0;
}
- .wallets.walletsmobile>div>div>h2:first-child+div+div+div>div:hover>div{
+ .wallets.walletsmobile>div>div>h2:first-child+div+div+div>div.hover>div{
display:block;
background:none;
width:auto;
@@ -2630,16 +2630,25 @@ h2 .rssicon{
margin-top:10px;
}
.wallets.walletsmobile>div>div>h2:first-child+div+div+div>div>div>p,
- .wallets.walletsmobile>div>div>h2:first-child+div+div+div>div>div>div{
+ .wallets.walletsmobile>div>div>h2:first-child+div+div+div>div>div>div,
+ .wallets.walletsmobile>div>div>h2:first-child+div+div+div>div>div>span{
+ display:none;
position:relative;
width:auto;
+ height:auto;
+ visibility:visible;
+ opacity:1;
border:0;
background:none;
padding:0;
top:0;
left:-20px;
}
- .wallets.walletsmobile>div>div>h2:first-child+div+div+div>div:hover>div>span{
+ .wallets.walletsmobile>div>div>h2:first-child+div+div+div>div.hover>div>p,
+ .wallets.walletsmobile>div>div>h2:first-child+div+div+div>div.hover>div>div{
+ display:block;
+ }
+ .wallets.walletsmobile>div>div>h2:first-child+div+div+div>div.hover>div>span{
display:none;
}
.download{
diff --git a/_templates/choose-your-wallet.html b/_templates/choose-your-wallet.html
index 8039de2f..4dd79050 100755
--- a/_templates/choose-your-wallet.html
+++ b/_templates/choose-your-wallet.html
@@ -955,7 +955,7 @@ wallets:
{{ wallet[1].title }}
{% for os in platform.os %}

{% endfor %}
-
+
{% for check in platform.check %}{% if check[0] == 'privacy' and platform.privacycheck %}
{% translate {{check[1]}} %}
{% for privacycheck in platform.privacycheck %}
@@ -985,7 +985,7 @@ wallets:
{{ wallet[1].title }}
{% for os in platform[1].os %}

{% endfor %}
-
+
{% for check in platform[1].check %}{% if check[0] == 'privacy' and platform[1].privacycheck %}
{% translate {{check[1]}} %}
{% for privacycheck in platform[1].privacycheck %}
diff --git a/_templates/development.html b/_templates/development.html
index d4bbbd1c..60d02eaf 100755
--- a/_templates/development.html
+++ b/_templates/development.html
@@ -56,7 +56,7 @@ id: development
picocoin - A tiny library with lightweight client and utilities, written in C.
python-bitcoinlib - A library for structures and protocols, written in Python.
Python Blkmaker - A client library for the getblocktemplate mining protocol, written in Python.
-
{% translate moremore %}
+
{% translate moremore %}
diff --git a/_templates/press.html b/_templates/press.html
index 22c4121e..30a5ddfa 100644
--- a/_templates/press.html
+++ b/_templates/press.html
@@ -55,26 +55,26 @@ dialogs:
diff --git a/_templates/secure-your-wallet.html b/_templates/secure-your-wallet.html
index f98c565d..5256d5e6 100755
--- a/_templates/secure-your-wallet.html
+++ b/_templates/secure-your-wallet.html
@@ -50,7 +50,7 @@ id: secure-your-wallet
{% translate offlinetxt %}
-
+
{% translate offlinetxtxt1 %}
- {% translate offlinetxtxt2 %}
@@ -62,7 +62,7 @@ id: secure-your-wallet
-
+
{% translate hardwarewallettxt %}
diff --git a/js/main.js b/js/main.js
index baf316bf..77eee62f 100644
--- a/js/main.js
+++ b/js/main.js
@@ -119,15 +119,18 @@ return false;
function loadYoutubeVideo(e) {
// Load Youtube video on target node on click.
-var t = getEvent(e, 'target'),
- nd = document.createElement('IFRAME');
-while (t.getAttribute('data-youtubeurl') === null || t.getAttribute('data-youtubeurl') === '') t = t.parentNode;
-nd.src = t.getAttribute('data-youtubeurl');
-nd.setAttribute('frameborder', 0);
-nd.setAttribute('allowfullscreen', true);
-t.innerHTML = '';
-t.appendChild(nd);
-t.onclick = '';
+function init(e) {
+ var t = getEvent(e, 'target'),
+ nd = document.createElement('IFRAME');
+ while (t.getAttribute('data-youtubeurl') === null || t.getAttribute('data-youtubeurl') === '') t = t.parentNode;
+ nd.src = t.getAttribute('data-youtubeurl');
+ nd.setAttribute('frameborder', 0);
+ nd.setAttribute('allowfullscreen', true);
+ t.innerHTML = '';
+ t.appendChild(nd);
+ t.onclick = '';
+}
+onTouchClick(e, init);
}
function expandBox(t) {
@@ -148,36 +151,48 @@ setTimeout(function() {
function boxShow(e) {
// Display the box content when the user click a box on the "Secure your wallet" page.
-var t = getEvent(e, 'target');
-while (t.nodeName != 'DIV') t = t.parentNode;
-expandBox(t);
-cancelEvent(e);
+function init(e) {
+ var t = getEvent(e, 'target');
+ while (t.nodeName != 'DIV') t = t.parentNode;
+ expandBox(t);
+ cancelEvent(e);
+}
+onTouchClick(e, init);
}
function faqShow(e) {
// Display the content of a question in the FAQ at user request.
-var t = getEvent(e, 'target');
-while (t.nodeType != 1 || t.nodeName != 'DIV') t = t.nextSibling;
-expandBox(t);
-cancelEvent(e);
+function init(e) {
+ var t = getEvent(e, 'target');
+ while (t.nodeType != 1 || t.nodeName != 'DIV') t = t.nextSibling;
+ expandBox(t);
+ cancelEvent(e);
+}
+onTouchClick(e, init);
}
function materialShow(e) {
// Display more materials on the "Press center" page at user request.
-var t = getEvent(e, 'target'),
- p = t;
-while (p.nodeType != 1 || p.nodeName != 'DIV') p = p.parentNode;
-expandBox(p);
-cancelEvent(e);
+function init(e) {
+ var t = getEvent(e, 'target'),
+ p = t;
+ while (p.nodeType != 1 || p.nodeName != 'DIV') p = p.parentNode;
+ expandBox(p);
+ cancelEvent(e);
+}
+onTouchClick(e, init);
}
function librariesShow(e) {
// Display more open source projects on the "Development" page at user request.
-var t = getEvent(e, 'target'),
- p = t;
-while (p.nodeType != 1 || p.nodeName != 'UL') p = p.parentNode;
-expandBox(p);
-cancelEvent(e);
+function init(e) {
+ var t = getEvent(e, 'target'),
+ p = t;
+ while (p.nodeType != 1 || p.nodeName != 'UL') p = p.parentNode;
+ expandBox(p);
+ cancelEvent(e);
+}
+onTouchClick(e, init);
}
function freenodeShow(e) {
@@ -384,6 +399,16 @@ onTouchClick(e, function() {
});
}
+function walletScoreListener(e) {
+// Listen for events on wallet scores and display them on tap.
+var init = function(e) {
+ var t = getEvent(e, 'target');
+ while (!t.parentNode.parentNode.parentNode.id) t = t.parentNode;
+ (t.className.indexOf('hover') === -1) ? addClass(t, 'hover') : removeClass(t, 'hover');
+};
+onTouchClick(e, init);
+}
+
function walletShowPlatform(platform) {
// Show wallets for given platform in the menu.
var t = null,