[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-cd-3-2' - loleaflet/src

Ashod Nakashian ashod.nakashian at collabora.co.uk
Thu Jul 19 11:49:27 UTC 2018


 loleaflet/src/core/Socket.js |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ce1d469459556f38084040d8539434bd881c3523
Author: Ashod Nakashian <ashod.nakashian at collabora.co.uk>
Date:   Thu Jul 19 01:27:46 2018 -0400

    leaflet: update IE11 connection limit message
    
    Change-Id: I7299867873fb00cf2a500f17a559106f52c8ba6f
    Reviewed-on: https://gerrit.libreoffice.org/57709
    Reviewed-by: Jan Holesovsky <kendy at collabora.com>
    Tested-by: Jan Holesovsky <kendy at collabora.com>

diff --git a/loleaflet/src/core/Socket.js b/loleaflet/src/core/Socket.js
index eb93d1f2f..a63648122 100644
--- a/loleaflet/src/core/Socket.js
+++ b/loleaflet/src/core/Socket.js
@@ -40,7 +40,7 @@ L.Socket = L.Class.extend({
 			var msgHint = '';
 			var isIE11 = !!window.MSInputMethodContext && !!document.documentMode; // https://stackoverflow.com/questions/21825157/internet-explorer-11-detection
 			if (isIE11)
-				msgHint = 'Note: IE11 has limitation on the maximum number of WebSockets open to a single domain. Please consult this page on how to change this limit: https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/general-info/ee330736(v=vs.85)#websocket-maximum-server-connections';
+				msgHint = 'IE11 has reached its maximum number of connections. Please see this document to increase this limit if needed: https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/general-info/ee330736(v=vs.85)#websocket-maximum-server-connections';
 
 			this._map.fire('error', {msg: _('Oops, there is a problem connecting to LibreOffice Online : ').replace('LibreOffice Online', (typeof brandProductName !== 'undefined' ? brandProductName : 'LibreOffice Online')) + e + msgHint, cmd: 'socket', kind: 'failed', id: 3});
 			return;


More information about the Libreoffice-commits mailing list