Merge branch 'BF-5167' of /home/git/repositories/brainfood/ofbiz-comet-messenger
Showing
1 changed file
with
3 additions
and
0 deletions
... | @@ -10,6 +10,9 @@ define([], function() { | ... | @@ -10,6 +10,9 @@ define([], function() { |
10 | request.onreadystatechange = function() { | 10 | request.onreadystatechange = function() { |
11 | if (request.readyState == 3 || request.readyState == 4) { | 11 | if (request.readyState == 3 || request.readyState == 4) { |
12 | if (request.status == 200){ | 12 | if (request.status == 200){ |
13 | if (request.onreadystatechange) { | ||
14 | request.onreadystatechange = null; | ||
15 | } | ||
13 | if (request.responseText) { | 16 | if (request.responseText) { |
14 | var newText = request.responseText.substr(responseLength); | 17 | var newText = request.responseText.substr(responseLength); |
15 | if (newText.length > 0) { | 18 | if (newText.length > 0) { | ... | ... |
-
Please register or sign in to post a comment