QR Code recognition integration, ‘Wallet Details’ layout update.
This commit is contained in:
parent
7bbee83a3e
commit
4ab7cbdd2e
8 changed files with 7386 additions and 123 deletions
|
@ -23,7 +23,8 @@ module.exports = function (grunt) {
|
|||
{ token: "//cryptojs.blockmodes.js", file: "./src/cryptojs.blockmodes.js" },
|
||||
{ token: "//cryptojs.ripemd160.js", file: "./src/cryptojs.ripemd160.js" },
|
||||
{ token: "//crypto-scrypt.js", file: "./src/crypto-scrypt.js" },
|
||||
{ token: "//doge.js", file: "./src/doge.js" },
|
||||
{ token: "//jsqrcode.js", file: "./src/jsqrcode.js" },
|
||||
{ token: "//doge.js", file: "./src/doge.js" },
|
||||
{ token: "//ellipticcurve.js", file: "./src/ellipticcurve.js" },
|
||||
{ token: "//ninja.key.js", file: "./src/ninja.key.js" },
|
||||
{ token: "//ninja.misc.js", file: "./src/ninja.misc.js" },
|
||||
|
|
2
README
2
README
|
@ -40,6 +40,8 @@ window.EllipticCurve BSD License
|
|||
window.BigInteger BSD License
|
||||
window.QRCode MIT License
|
||||
window.Bitcoin MIT License
|
||||
jsqrcode Apache License, 2.0
|
||||
|
||||
|
||||
The WalletGenerator.net software is available under The MIT License (MIT)
|
||||
Copyright (c) 2014 WalletGenerator.net
|
||||
|
|
BIN
images/qrcode.png
Normal file
BIN
images/qrcode.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 552 B |
3752
index.html
3752
index.html
File diff suppressed because it is too large
Load diff
106
src/index.html
106
src/index.html
|
@ -5,45 +5,45 @@
|
|||
<meta name="description" content="Universal Open Source Client-Side Paper Wallet Generator for BitCoins and other cryptocurrencies. Create your own paper wallet in a few easy steps : Generate, Print and Fold ! Supported currencies : Auroracoin, Bitcoin, Blackcoin, BBQcoin, Catcoin, Dogecoin, Feathercoin, Litecoin, Marscoin, NameCoin, Peercoin, Primecoin, Reddcoin, Topcoin, Vertcoin.">
|
||||
<!--
|
||||
|
||||
Notice of Copyrights and Licenses:
|
||||
Notice of Copyrights and Licenses:
|
||||
---------------------------------------
|
||||
The WalletGenerator.net project, software and embedded resources are copyright WalletGenerator.net.
|
||||
The WalletGenerator.net name and logo are not part of the open source license.
|
||||
|
||||
The WalletGenerator.net project, software and embedded resources are copyright WalletGenerator.net.
|
||||
The WalletGenerator.net name and logo are not part of the open source license.
|
||||
Portions of the all-in-one HTML document contain JavaScript codes that are the copyrights of others.
|
||||
The individual copyrights are included throughout the document along with their licenses. Included
|
||||
JavaScript libraries are separated with HTML script tags.
|
||||
|
||||
Portions of the all-in-one HTML document contain JavaScript codes that are the copyrights
|
||||
of others. The individual copyrights are included throughout the document along with their
|
||||
licenses. Included JavaScript libraries are separated with HTML script tags.
|
||||
Summary of JavaScript functions with a redistributable license:
|
||||
JavaScript function License
|
||||
------------------- --------------
|
||||
Array.prototype.map Public Domain
|
||||
window.Crypto BSD License
|
||||
window.SecureRandom BSD License
|
||||
window.EllipticCurve BSD License
|
||||
window.BigInteger BSD License
|
||||
window.QRCode MIT License
|
||||
window.Bitcoin MIT License
|
||||
jsqrcode Apache License, 2.0
|
||||
|
||||
Summary of JavaScript functions with a redistributable license:
|
||||
JavaScript function License
|
||||
|
||||
Array.prototype.map Public Domain
|
||||
window.Crypto BSD License
|
||||
window.SecureRandom BSD License
|
||||
window.EllipticCurve BSD License
|
||||
window.BigInteger BSD License
|
||||
window.QRCode MIT License
|
||||
window.Bitcoin MIT License
|
||||
The WalletGenerator.net software is available under The MIT License (MIT)
|
||||
Copyright (c) 2014 WalletGenerator.net
|
||||
|
||||
The WalletGenerator.net software is available under The MIT License (MIT)
|
||||
Copyright (c) 2014 WalletGenerator.net
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
||||
associated documentation files (the "Software"), to deal in the Software without restriction,
|
||||
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
without restriction, including without limitation the rights to use, copy, modify,
|
||||
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to the following
|
||||
conditions:
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial
|
||||
portions of the Software.
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies
|
||||
or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
||||
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
||||
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
|
||||
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
GitHub Repository: https://github.com/MichaelMure/PaperWallet
|
||||
|
@ -107,6 +107,9 @@
|
|||
</script>
|
||||
<script type="text/javascript">
|
||||
//crypto-scrypt.js
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
//jsqrcode.js
|
||||
</script>
|
||||
<style type="text/css">
|
||||
//main.css
|
||||
|
@ -160,7 +163,7 @@
|
|||
<div id="rightArea">
|
||||
<div id="progress-bar" class="fullyRounded">
|
||||
<div id="progress-bar-percentage" class="fullyRounded" style="width: 1%"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="seedSkipper">
|
||||
<a href="#" class="nicerButton" style="width: 100px;" onClick="ninja.seeder.seedCount = ninja.seeder.seedLimit; ninja.seeder.seed();">Skip »</a>
|
||||
|
@ -438,14 +441,37 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div id="detailarea" class="walletarea">
|
||||
<div id="detailarea" class="walletarea">
|
||||
<div id="detailcommands" class="commands">
|
||||
<span><label id="detaillabelenterprivatekey" for="detailprivkey">Enter Private Key</label></span>
|
||||
<input type="text" id="detailprivkey" value="" onfocus="this.select();" onkeypress="if (event.keyCode == 13) ninja.wallets.detailwallet.viewDetails();" />
|
||||
<span><input type="button" id="detailview" value="View Details" onclick="ninja.wallets.detailwallet.viewDetails();" /></span>
|
||||
<span class="print"><input type="button" name="print" id="detailprint" value="Print" onclick="window.print();" /></span>
|
||||
<div class="row extra">
|
||||
<span><label id="detailkeyformats">Key Formats: WIF, WIFC, HEX, B64, B6, MINI, BIP38</label></span>
|
||||
|
||||
<div class="row extra qrzone">
|
||||
<span class="qrinput">
|
||||
<label id="detaillabelenterprivatekey" for="detailprivkey">Enter Private Key</label>
|
||||
|
||||
<span class="qrcodeinputwrapper">
|
||||
<input type="text" id="detailprivkey" value="" placeholder="Enter a private key, or click the QR icon to scan" autocomplete="off" onFocus="this.select();" onKeyPress="if (event.keyCode == 13) ninja.wallets.detailwallet.viewDetails();" />
|
||||
<img onClick="ninja.wallets.detailwallet.qrscanner.start()" />
|
||||
</span>
|
||||
|
||||
<input type="button" id="detailview" value="View Details" onclick="ninja.wallets.detailwallet.viewDetails();" />
|
||||
</span>
|
||||
<span class="print">
|
||||
<input type="button" name="print" id="detailprint" value="Print" onclick="window.print();" />
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div id="paperqrscanner">
|
||||
<div class="background"></div>
|
||||
<div id="mainbody" class="dialog instructionsarea">
|
||||
<h2>Scan QR code using your camera</h2>
|
||||
<div id="paperqrnotsupported" style="color: red" class="hide">Sorry, but your web browser does not support the HTML5 camera controls. Try using a recent version of Firefox (recommended), Chrome or Opera.</div>
|
||||
<div id="paperqrpermissiondenied" style="color: red" class="hide">
|
||||
<p>Permission denied. Your browser should display a message requesting access to your camera. Please click the "Allow" button to enable the camera.</p>
|
||||
</div>
|
||||
<div id="paperqrerror" style="color: red"></div>
|
||||
<div id="paperqroutput"></div>
|
||||
<button onClick="ninja.wallets.detailwallet.qrscanner.stop()">Cancel</button>
|
||||
</div>
|
||||
</div>
|
||||
<div id="detailbip38commands">
|
||||
<span><label id="detaillabelpassphrase">Enter BIP38 Passphrase</label> <input type="text" id="detailprivkeypassphrase" value="" onfocus="this.select();" onkeypress="if (event.keyCode == 13) ninja.wallets.detailwallet.viewDetails();" /></span>
|
||||
|
|
3546
src/jsqrcode.js
Normal file
3546
src/jsqrcode.js
Normal file
File diff suppressed because it is too large
Load diff
54
src/main.css
54
src/main.css
|
@ -37,10 +37,10 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
}
|
||||
#progress-bar-percentage { background:#FFA247; padding: 3px 0px; text-align: center; height: 18px;
|
||||
-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;
|
||||
}
|
||||
}
|
||||
#progress-bar-percentage span { display: inline-block; position: absolute; width: 100%; left: 0; }
|
||||
.nicerButton { font-size: 14px; }
|
||||
|
||||
|
||||
#generate { font-size: 13px; text-align: left; position: relative; padding: 20px; border: 1px solid #BFBFBF; background-color: white; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; }
|
||||
#generate span { padding: 5px 5px 0 5px; }
|
||||
#generatekeyinput { position: relative; z-index: 20; }
|
||||
|
@ -75,7 +75,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
|
||||
.firstHalfSingleSafety { width: 50%; padding: 10px 30px 10px 30px; }
|
||||
|
||||
.secondHalfSingleSafety {
|
||||
.secondHalfSingleSafety {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
|
@ -145,14 +145,14 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
#logo { width: 578px; height: 80px; }
|
||||
|
||||
.backLogo { float: right; width: 50px; height: 50px; }
|
||||
|
||||
|
||||
#paperarea { min-height: 120px; display: none; }
|
||||
#paperarea .keyarea { border: 1px solid #BFBFBF; border-top: 0; }
|
||||
#paperarea .keyarea.art { display: block; height: auto; border: 0; font-family: Ubuntu, Arial; padding: 0; margin: 0; }
|
||||
#paperarea .artwallet .papersvg { width: 1004px; height: 426px; border: 0; margin: 0; padding: 0; left: 0; }
|
||||
#paperarea .artwallet .qrcode_public { top: 263px; left: 780px; z-index: 100; margin: 0; float: none; display: block; position: absolute; background-color: #FFFFFF;
|
||||
padding: 5px 5px 2px 5px; }
|
||||
#paperarea .artwallet .qrcode_private { top: 37px; right: 446px; z-index: 100; margin: 0; float: none; display: block; position: absolute; background-color: #FFFFFF;
|
||||
#paperarea .artwallet .qrcode_public { top: 263px; left: 780px; z-index: 100; margin: 0; float: none; display: block; position: absolute; background-color: #FFFFFF;
|
||||
padding: 5px 5px 2px 5px; }
|
||||
#paperarea .artwallet .qrcode_private { top: 37px; right: 446px; z-index: 100; margin: 0; float: none; display: block; position: absolute; background-color: #FFFFFF;
|
||||
padding: 5px 5px 2px 5px;
|
||||
-ms-transform: rotate(180deg); /* IE 9 */
|
||||
-webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
|
||||
|
@ -160,7 +160,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
}
|
||||
.supportWalletGenerator { margin: 30px; }
|
||||
.errorMsg { color: red; text-align: center !important; width: 100% !important; padding-top: 15px !important; }
|
||||
#paperarea .artwallet .btcaddress
|
||||
#paperarea .artwallet .btcaddress
|
||||
{
|
||||
position: absolute; bottom: 88px; left: 874px; z-index: 100; font-size: 11px; background-color: transparent;
|
||||
font-weight: 100; color: #000000; margin: 0; width: 124px; height: 32px; text-align: center;
|
||||
|
@ -168,8 +168,8 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
-ms-transform: rotate(-90deg); /* IE 9 */
|
||||
-webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
|
||||
transform: rotate(-90deg); font-family: Courier, monospace;
|
||||
}
|
||||
#paperarea .artwallet .btcprivwif
|
||||
}
|
||||
#paperarea .artwallet .btcprivwif
|
||||
{
|
||||
position: absolute; top: 86px; right: 540px; z-index: 100; font-size: 11px; background-color: transparent;
|
||||
font-weight: 100; color: #000000; margin: 0; width: 124px; height: 32px; text-align: center;
|
||||
|
@ -194,19 +194,27 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
.paperWalletText ul { margin: 0px; padding: 0px; }
|
||||
.paperWalletText li { line-height: 13px; margin-bottom: 5px; }
|
||||
|
||||
.qrzone { margin: 20px 0px 20px 20px; }
|
||||
#detaillabelenterprivatekey { margin-right: 15px; }
|
||||
|
||||
.qrcodeinputwrapper { position: relative; margin-right: 15px; }
|
||||
.qrcodeinputwrapper img { position: absolute; display: block; top: 3px; right: 20px; width: 16px; height: 16px;background: url("./images/qrcode.png"); cursor: pointer; padding: 0; }
|
||||
|
||||
#bulkarea .body { padding: 5px 0 0 0; }
|
||||
#bulkarea .format { font-style: italic; font-size: 90%; }
|
||||
#bulktextarea { font-size: 90%; width: 98%; margin: 4px 0 0 0; }
|
||||
#brainarea .keyarea { visibility: hidden; min-height: 110px; }
|
||||
#detailarea span.qrinput { position: relative; padding: 10px; }
|
||||
#detailarea span.qrinput #detailprivkey { width: 420px; height: 20px; }
|
||||
#detailkeyarea { padding: 10px; }
|
||||
#detailarea { margin: 0; text-align: left; }
|
||||
#detailarea .notes { text-align: left; font-size: 80%; padding: 0 0 20px 0; }
|
||||
#detailarea .pubqr .item .label { text-decoration: none; }
|
||||
#detailarea .pubqr .item { float: left; margin: 10px 0; position: relative; }
|
||||
#detailarea .pubqr .item.right { float: right; position: relative; top: 0; }
|
||||
#detailarea .pubqr .item.right { float: right; position: relative; top: 0; }
|
||||
#detailarea .privqr .item .label { text-decoration: none; }
|
||||
#detailarea .privqr .item { float: left; margin: 0; position: relative; }
|
||||
#detailarea .privqr .item.right { float: right; position: relative; }
|
||||
#detailarea .privqr .item.right { float: right; position: relative; }
|
||||
#detailarea .item { margin: 10px 0; position: relative; font-size: 90%; padding: 1px 0; }
|
||||
#detailarea .item.clear { clear: both; padding-top: 10px; }
|
||||
#detailarea .label { display: block; font-weight: bold; }
|
||||
|
@ -216,7 +224,9 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
#detailarea #detailqrcodeprivate { position: relative; float: left; margin: 0 10px 0 0; padding: 13px 11px 11px 11px; }
|
||||
#detailarea #detailqrcodeprivatecomp { position: relative; float: right; margin: 0 0 0 10px; padding: 13px 11px 11px 11px; }
|
||||
#detailpubkey { width: 590px; }
|
||||
#detailbip38commands { display: none; padding-top: 5px; }
|
||||
#detailbip38commands { display: none; padding-top: 5px; }
|
||||
#paperqrscanner { position: absolute; display: none; width: 100%; height: 100%; top: 0; left: 0; z-index: 5000; vertical-aligh: middle; }
|
||||
#paperqrscanner.show { display: block; }
|
||||
#vanityarea { text-align: left; }
|
||||
#vanityarea .label { text-decoration: underline; }
|
||||
#vanityarea .output { font-family: monospace; font-size: 1.25em; display: block; }
|
||||
|
@ -226,7 +236,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
#vanitystep2area { border-top: 1px solid #BFBFBF; display: block; padding: 15px; }
|
||||
#vanitystep2inputs { padding: 0 15px 10px 15px; }
|
||||
#vanitycalc { margin-top: 5px; }
|
||||
|
||||
|
||||
.englishjson { text-align: center; padding: 40px 0 20px 0; }
|
||||
.unittests { text-align: center; }
|
||||
.unittests div { width: 894px; font-family: monospace; text-align: left; margin: auto; padding: 5px; border: 1px solid black; }
|
||||
|
@ -235,6 +245,8 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
#busyblock.busy { display: block; }
|
||||
.hide { display: none; }
|
||||
.show { display: block; }
|
||||
.dialog { z-index: 6000; position: relative; background: white; border: 2px solid #f7931a; width: 600px; margin: 150px auto; padding: 1em; }
|
||||
.dialog-narrow { width: 300px; }
|
||||
|
||||
#currencyddl { margin: 20px; position: absolute; right: 0; top: 60px; width: 320px; font-size: 14px; }
|
||||
#currencyddl select { font-size: 14px; }
|
||||
|
@ -246,13 +258,13 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
|
||||
#donatearea { text-align: left; padding: 15px 15px 120px 15px; position: relative; }
|
||||
#donatearea .address { font-family: 'Courier New', Courier, monospace; }
|
||||
|
||||
|
||||
/* IE8 */
|
||||
.qrcodetable { border-width: 0px; border-style: none; border-color: #0000ff; border-collapse: collapse; }
|
||||
.qrcodetddark { border-width: 0px; border-style: none; border-color: #0000ff; border-collapse: collapse; padding: 0; margin: 0; width: 2px; height: 2px; background-color: #000000; }
|
||||
.qrcodetdlight { border-width: 0px; border-style: none; border-color: #0000ff; border-collapse: collapse; padding: 0; margin: 0; width: 2px; height: 2px; background-color: #ffffff; }
|
||||
|
||||
@media screen
|
||||
|
||||
@media screen
|
||||
{
|
||||
#tagline { margin: 0 0 15px 0; font-style: italic; text-align: left; }
|
||||
.menu { text-align: left; }
|
||||
|
@ -263,7 +275,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
.menu .tab.selected:hover { color: #000; }
|
||||
.pagebreak { height: 50px; }
|
||||
.commands { border-bottom: 1px solid #BFBFBF; padding: 10px 2px; margin-bottom: 0; background-color: white; }
|
||||
.commands .row { padding: 0 0; text-align: left; }
|
||||
.commands .row { padding: 0 0; text-align: left; }
|
||||
.commands .row.extra { padding-top: 6px; }
|
||||
.commands span { padding: 0 10px; }
|
||||
.commands span.print { float: right; }
|
||||
|
@ -282,12 +294,12 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
|||
#brainwarning { }
|
||||
#detailcommands { padding: 10px 0; }
|
||||
#detailcommands span { padding: 0 10px; }
|
||||
#detailprivkey { width: 250px; }
|
||||
#detailprivkey { width: 300px; }
|
||||
#detailprivkeypassphrase { width: 250px; }
|
||||
.paper .commands { border: 1px solid #BFBFBF; }
|
||||
#bulkstartindex { width: 35px; }
|
||||
#bulkstartindex { width: 35px; }
|
||||
#bulklimit { width: 45px; }
|
||||
|
||||
|
||||
.footer { font-size: 90%; clear: both; width: 750px; padding: 10px 0 10px 0; margin: 50px auto auto auto; }
|
||||
.footer div span.item { padding: 10px; }
|
||||
.footer .authorbtc { float: left; width: 470px; }
|
||||
|
|
|
@ -1,7 +1,53 @@
|
|||
ninja.wallets.detailwallet = {
|
||||
qrscanner: {
|
||||
scanner: null,
|
||||
|
||||
start: function() {
|
||||
document.getElementById('paperqrscanner').className = 'show';
|
||||
ninja.wallets.detailwallet.qrscanner.showError(null);
|
||||
var supported = ninja.wallets.detailwallet.qrscanner.scanner.isSupported();
|
||||
if (!supported) {
|
||||
document.getElementById('paperqrnotsupported').className = '';
|
||||
} else {
|
||||
ninja.wallets.detailwallet.qrscanner.scanner.start();
|
||||
}
|
||||
},
|
||||
|
||||
stop: function() {
|
||||
ninja.wallets.detailwallet.qrscanner.scanner.stop();
|
||||
document.getElementById('paperqrscanner').className = '';
|
||||
},
|
||||
|
||||
showError: function(error) {
|
||||
if (error) {
|
||||
if (error == 'PERMISSION_DENIED' || error == 'PermissionDeniedError') {
|
||||
document.getElementById('paperqrerror').innerHTML = '';
|
||||
document.getElementById('paperqrpermissiondenied').className = '';
|
||||
} else {
|
||||
document.getElementById('paperqrerror').innerHTML = error;
|
||||
document.getElementById('paperqrpermissiondenied').className = 'hide';
|
||||
}
|
||||
} else {
|
||||
document.getElementById('paperqrerror').innerHTML = '';
|
||||
document.getElementById('paperqrpermissiondenied').className = 'hide';
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
open: function () {
|
||||
document.getElementById("detailarea").style.display = "block";
|
||||
document.getElementById("detailprivkey").focus();
|
||||
if (!ninja.wallets.detailwallet.qrscanner.scanner) {
|
||||
ninja.wallets.detailwallet.qrscanner.scanner = new QRCodeScanner(320, 240, 'paperqroutput',
|
||||
function(data) {
|
||||
document.getElementById('detailprivkey').value = data;
|
||||
document.getElementById('paperqrscanner').className = '';
|
||||
ninja.wallets.detailwallet.viewDetails();
|
||||
},
|
||||
function(error) {
|
||||
ninja.wallets.detailwallet.qrscanner.showError(error);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
close: function () {
|
||||
|
|
Loading…
Add table
Reference in a new issue