From 077019dfc745cdbfa6c70243268a76c907ffddfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Mon, 27 Oct 2014 22:38:43 +0100 Subject: [PATCH] Add the boilerplate for a card wallet --- .gitignore | 1 + Gruntfile.js | 5 ++- index.html | 83 ++++++++++++++++++++++++++++++++++++++++- src/index.html | 20 +++++++++- src/ninja.cardwallet.js | 63 +++++++++++++++++++++++++++++++ 5 files changed, 168 insertions(+), 4 deletions(-) create mode 100644 src/ninja.cardwallet.js diff --git a/.gitignore b/.gitignore index f145e35..a60ae53 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules not_versioned Thumbs.db +*~ diff --git a/Gruntfile.js b/Gruntfile.js index 5b8a1ec..964928c 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -32,10 +32,11 @@ module.exports = function (grunt) { { token: "//ninja.translator.js", file: "./src/ninja.translator.js" }, { token: "//ninja.singlewallet.js", file: "./src/ninja.singlewallet.js" }, { token: "//ninja.paperwallet.js", file: "./src/ninja.paperwallet.js" }, + { token: "//ninja.cardwallet.js", file: "./src/ninja.cardwallet.js" }, { token: "//ninja.bulkwallet.js", file: "./src/ninja.bulkwallet.js" }, { token: "//ninja.brainwallet.js", file: "./src/ninja.brainwallet.js" }, { token: "//ninja.detailwallet.js", file: "./src/ninja.detailwallet.js" }, - { token: "//ninja.donatetab.js", file: "./src/ninja.donatetab.js" }, + { token: "//ninja.donatetab.js", file: "./src/ninja.donatetab.js" }, { token: "//qrcode.js", file: "./src/qrcode.js" }, { token: "//securerandom.js", file: "./src/securerandom.js" }, { token: "//janin.currency.js", file: "./src/janin.currency.js" }, @@ -57,4 +58,4 @@ module.exports = function (grunt) { grunt.file.defaultEncoding = 'utf-8'; grunt.loadNpmTasks("grunt-combine"); grunt.registerTask("default", ["combine:src", "combine:i18n"]); -}; \ No newline at end of file +}; diff --git a/index.html b/index.html index a1fb861..2b50949 100644 --- a/index.html +++ b/index.html @@ -9679,6 +9679,7 @@ h1 { margin: 0px; height: 91px; } -
+
@@ -9881,6 +9882,20 @@ Walletgenerator.net use the same security measures as the original project. All-
+
+
+
+   +   + + + +
+ +
+
+
+
@@ -11362,6 +11377,72 @@ ninja.wallets.paperwallet = { } } }; + + +