From e421e03c18437c5fce71952c188fc60cf05e6372 Mon Sep 17 00:00:00 2001 From: Harish Karumuthil Date: Tue, 23 Feb 2021 16:11:05 +0530 Subject: [PATCH] Change encoding --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 6518cfc..08aa527 100644 --- a/index.html +++ b/index.html @@ -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];