mirror of
https://github.com/harish2704/UPI-QR-code-from-bank-details.git
synced 2026-09-10 13:11:08 +00:00
Change encoding
This commit is contained in:
+2
-2
@@ -69,7 +69,7 @@
|
||||
var ifscCode = $('ifscCode').value;
|
||||
var accountHolder = $('accountHolder').value;
|
||||
|
||||
location.hash = [accNo,ifscCode,accountHolder].join('||');
|
||||
location.hash = [accNo,ifscCode,accountHolder].join(';');
|
||||
$('sharelink').value = location
|
||||
|
||||
renderQR( accNo, ifscCode, accountHolder );
|
||||
@@ -78,7 +78,7 @@
|
||||
|
||||
(function(){
|
||||
if(location.hash.length > 20 ){
|
||||
var data = decodeURIComponent( location.hash.slice(1) ).split('||');
|
||||
var data = decodeURIComponent( location.hash.slice(1) ).split(';');
|
||||
|
||||
$('accNo').value = data[0];
|
||||
$('ifscCode').value = data[1];
|
||||
|
||||
Reference in New Issue
Block a user