removed excess debugging
This commit is contained in:
parent
f8ba322b50
commit
a3f243363f
29
phone.js
29
phone.js
|
@ -36,29 +36,6 @@
|
||||||
return argsParsed;
|
return argsParsed;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
function parseQuery(search) {
|
|
||||||
var args = search.substring(1).split('&');
|
|
||||||
var argsParsed = {};
|
|
||||||
var i;
|
|
||||||
|
|
||||||
console.log('parse args', args);
|
|
||||||
for (i = 0; i < args.length; i++) {
|
|
||||||
var arg = args[i];
|
|
||||||
|
|
||||||
if (-1 === arg.indexOf('=')) {
|
|
||||||
argsParsed[decodeURIComponent(arg).trim()] = true;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
var kvp = arg.split('=');
|
|
||||||
argsParsed[decodeURIComponent(kvp[0]).trim()] = decodeURIComponent(kvp[1]).trim();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return argsParsed;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
function run() {
|
function run() {
|
||||||
var countdown = $(".js-countdown").countdown360({
|
var countdown = $(".js-countdown").countdown360({
|
||||||
radius: 30,
|
radius: 30,
|
||||||
|
@ -74,7 +51,6 @@
|
||||||
// TODO change to token start time, regardless of the time the app began
|
// TODO change to token start time, regardless of the time the app began
|
||||||
countdown.start(new Date());
|
countdown.start(new Date());
|
||||||
console.log('countdown360 ', countdown);
|
console.log('countdown360 ', countdown);
|
||||||
console.log(document.location.search);
|
|
||||||
|
|
||||||
var otpauth = parseQuery(document.location.search).otpuri;
|
var otpauth = parseQuery(document.location.search).otpuri;
|
||||||
var otplink = document.createElement('a');
|
var otplink = document.createElement('a');
|
||||||
|
@ -98,11 +74,6 @@
|
||||||
accountName = decodeURI(meta[0]);
|
accountName = decodeURI(meta[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log('otpuri', otpauth);
|
|
||||||
console.log('otplink', otplink);
|
|
||||||
console.log('otplink.search', otplink.search);
|
|
||||||
console.log('otp', otp);
|
|
||||||
|
|
||||||
$('.js-issuer').text(issuer);
|
$('.js-issuer').text(issuer);
|
||||||
$('.js-account-name').text(accountName);
|
$('.js-account-name').text(accountName);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue