Remove abandoned approach to make chrome package; reformat for readability
[gssweb.git] / navigator.gssweb.js
index 9d773cc..cd17389 100644 (file)
@@ -1,4 +1,4 @@
-console.log("Loading navigator.gssweb.js - #2");
+console.log("Loading navigator.gssweb.js - #4");
 
 
 var GSSWeb = (function () {
@@ -138,12 +138,15 @@ var GSSWeb = (function () {
 
     var msg = "nonce=" + this.nonce +
                "&token=" + encodeURIComponent(this.clientToken);
+
     this.xhr.open("POST", this.serverPath, true);
+
     this.xhr.setRequestHeader(
       'Content-Type', 
       'application/x-www-form-urlencoded'
     );
     this.xhr.onreadystatechange = this.recvTokenFromServer.bind(this);
+
     this.xhr.send(msg);
   };