From c83993abf777096e8d174d2162d0974f11758797 Mon Sep 17 00:00:00 2001 From: ausiv4 Date: Sat, 25 Jul 2009 15:43:07 +0000 Subject: Fixed views.py to work with the new library for registration. There were minor errors in the library, which have also been addressed. --- javascript/srp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'javascript') diff --git a/javascript/srp.js b/javascript/srp.js index d998ad4..a1bddff 100644 --- a/javascript/srp.js +++ b/javascript/srp.js @@ -97,7 +97,7 @@ function SRP(username, password, ser, base_url) if(xhr.readyState == 4 && xhr.status == 200) { if(xhr.responseXML.getElementsByTagName("ok").length > 0) { - this.identify(); + that.identify(); } } }; @@ -124,7 +124,7 @@ function SRP(username, password, ser, base_url) { // This probably means A % N == 0, which means we need to generate // a new A and reidentify. - this.identify(); + that.identify(); } } }; -- cgit v1.2.3