From 866faa8fa62d0f315473ef5953c2a4903309de77 Mon Sep 17 00:00:00 2001 From: Lucas Legname Date: Wed, 28 May 2014 20:41:24 +0200 Subject: [PATCH] H1 tag added, moar words added to the Dogecoin plugin. --- index.html | 7 ++++++- src/index.html | 2 ++ src/janin.currency.js | 3 ++- src/main.css | 2 ++ 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 5ea69ce..0869919 100644 --- a/index.html +++ b/index.html @@ -9351,6 +9351,8 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height: #mousemovelimit { font-size: 16px; font-family: monospace; } .frontPageText { position: relative; } +h1 { display: none; } + #keyarea { height: 250px; } #keyarea .pubaddress { float: none; display: block; padding: 0; height: auto; } #keyarea .label { text-decoration: none; } @@ -9659,6 +9661,8 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height: banner +

Bitcoin Paper Wallet Generator

+
Choose currency : @@ -10263,6 +10267,7 @@ janin.currency = { // Update title depending on currency document.title = janin.currency.name() + "'s paper wallet generator"; + document.getElementById("siteTitle").innerHTML = janin.currency.name() + " Paper Wallet Generator"; // Regenerate a new wallet when not expensive ninja.wallets.singlewallet.generateNewAddressAndKey(); @@ -10283,7 +10288,7 @@ janin.currency = { // easter egg doge ;) if(janin.currency.name() == "Dogecoin") { - janin.doge = new Doge(['wow', 'so wallet', 'such random', 'very pretty', 'much design']); + janin.doge = new Doge(['wow', 'so paper wallet', 'such random', 'very pretty', 'much design', 'awesome', 'much crypto', 'such coin', 'wow!!', 'to da moon']]]]); return; } diff --git a/src/index.html b/src/index.html index 23c9a70..5f9588a 100644 --- a/src/index.html +++ b/src/index.html @@ -135,6 +135,8 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. banner
+

Bitcoin Paper Wallet Generator

+
Choose currency : diff --git a/src/janin.currency.js b/src/janin.currency.js index 33ce207..268f788 100644 --- a/src/janin.currency.js +++ b/src/janin.currency.js @@ -41,6 +41,7 @@ janin.currency = { // Update title depending on currency document.title = janin.currency.name() + "'s paper wallet generator"; + document.getElementById("siteTitle").innerHTML = janin.currency.name() + " Paper Wallet Generator"; // Regenerate a new wallet when not expensive ninja.wallets.singlewallet.generateNewAddressAndKey(); @@ -61,7 +62,7 @@ janin.currency = { // easter egg doge ;) if(janin.currency.name() == "Dogecoin") { - janin.doge = new Doge(['wow', 'so wallet', 'such random', 'very pretty', 'much design']); + janin.doge = new Doge(['wow', 'so paper wallet', 'such random', 'very pretty', 'much design', 'awesome', 'much crypto', 'such coin', 'wow!!', 'to da moon']]]]); return; } diff --git a/src/main.css b/src/main.css index 8d8509a..913657d 100644 --- a/src/main.css +++ b/src/main.css @@ -49,6 +49,8 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height: #mousemovelimit { font-size: 16px; font-family: monospace; } .frontPageText { position: relative; } +h1 { display: none; } + #keyarea { height: 250px; } #keyarea .pubaddress { float: none; display: block; padding: 0; height: auto; } #keyarea .label { text-decoration: none; }