From 9b790e80c604ec52cdc1b821947c54b1e21557b3 Mon Sep 17 00:00:00 2001 From: "informatik0101@gmail.com" Date: Sun, 25 May 2014 17:01:14 +0000 Subject: [PATCH] Minor grammar fix in comments. --- .../trunk/WebContent/js/proekspert.ws.load.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ProekspertWebServiceClient/trunk/WebContent/js/proekspert.ws.load.js b/ProekspertWebServiceClient/trunk/WebContent/js/proekspert.ws.load.js index 38693e2..78c8e5d 100644 --- a/ProekspertWebServiceClient/trunk/WebContent/js/proekspert.ws.load.js +++ b/ProekspertWebServiceClient/trunk/WebContent/js/proekspert.ws.load.js @@ -6,7 +6,7 @@ var wsURL = hostProtocol + "//" + hostURL + ":" + wsPort + wsPath; var currentRequestId = -1; -// Dealing with "console is not defined" issue in IE +// Dealing with the "console is not defined" issue in IE. if (!window.console) { console = {log: function() {}}; } @@ -73,8 +73,8 @@ function process(data) { /* * IMPLEMENTATION NOTE * Due to the issues with IE (excluding version 10, probably 9?) - * there is a lot plain string concatenations, instead of chaining - * ".text()" or ".html()". Although not a problem by itself, but still + * we are using plain string concatenations, instead of method chaining + * (".text()" or ".html()"). Although not a problem by itself, but still * makes the code look less elegant. The current solution works on * Internet Explorer 8+. */