loleaflet/src/control/Control.PartsPreview.js | 2 loleaflet/src/control/Control.Scroll.js | 2 loleaflet/src/layer/tile/TileLayer.js | 86 +++++++++++++------------- 3 files changed, 45 insertions(+), 45 deletions(-)
New commits: commit 73fe6bd230f94a0372f107b977cba6be899b5c21 Author: Mihai Varga <mihai.va...@collabora.com> Date: Mon Aug 31 13:31:20 2015 +0300 loleaflet: fixed coding style errors reported by js lint Conflicts: loleaflet/src/control/Control.Styles.js diff --git a/loleaflet/src/control/Control.PartsPreview.js b/loleaflet/src/control/Control.PartsPreview.js index b09e446..1bec8a4 100644 --- a/loleaflet/src/control/Control.PartsPreview.js +++ b/loleaflet/src/control/Control.PartsPreview.js @@ -57,7 +57,7 @@ L.Control.PartsPreview = L.Control.extend({ _updatePart: function (e) { if (e.docType === 'presentation') { - this._map.getPartPreview(e.part, e.part, 180, 180); + this._map.getPartPreview(e.part, e.part, 180, 180); } }, diff --git a/loleaflet/src/control/Control.Scroll.js b/loleaflet/src/control/Control.Scroll.js index 5cb1a81..315f575 100644 --- a/loleaflet/src/control/Control.Scroll.js +++ b/loleaflet/src/control/Control.Scroll.js @@ -15,7 +15,7 @@ L.Control.Scroll = L.Control.extend({ map.on('updatescrolloffset', this._onUpdateScrollOffset, this); var control = this; - $(".scroll-container").mCustomScrollbar({ + $('.scroll-container').mCustomScrollbar({ axis: 'yx', theme: 'dark-thick', scrollInertia: 0, diff --git a/loleaflet/src/layer/tile/TileLayer.js b/loleaflet/src/layer/tile/TileLayer.js index afa9c05..50cb1eb 100644 --- a/loleaflet/src/layer/tile/TileLayer.js +++ b/loleaflet/src/layer/tile/TileLayer.js @@ -68,7 +68,7 @@ L.TileLayer = L.GridLayer.extend({ // Position and size of the selection end. this._textSelectionEnd = new L.LatLngBounds(new L.LatLng(0, 0), new L.LatLng(0, 0)); - this._lastValidPart = -1; + this._lastValidPart = -1; // Cursor marker this._cursorMarker = null; // Graphic marker @@ -114,7 +114,7 @@ L.TileLayer = L.GridLayer.extend({ this._map.on('zoomend', this._onUpdateCursor, this); this._map.on('dragstart', this._onDragStart, this); this._map.on('requestloksession', this._onRequestLOKSession, this); - this._map.on('error', this._mapOnError, this); + this._map.on('error', this._mapOnError, this); this._startMarker.on('drag dragend', this._onSelectionHandleDrag, this); this._endMarker.on('drag dragend', this._onSelectionHandleDrag, this); this._textArea = this._map._textArea; @@ -341,10 +341,10 @@ L.TileLayer = L.GridLayer.extend({ delete this._tileCache[key]; } } - if ( command.part === this._currentPart && - command.part !== this._lastValidPart ) { - this._lastValidPart = command.part; - this._map.fire('updatepart', { part: command.part, docType: this._docType }); + if (command.part === this._currentPart && + command.part !== this._lastValidPart) { + this._lastValidPart = command.part; + this._map.fire('updatepart', {part: command.part, docType: this._docType}); } } else if (textMsg.startsWith('statechanged:')) { @@ -524,39 +524,39 @@ L.TileLayer = L.GridLayer.extend({ } }, - _onOpenSocket: function () { - for (var i = 0; i < this._msgQueue.length; i++) { - this._map.socket.send(this._msgQueue[i].msg); - L.Log.log(this._msgQueue[i].msg, this._msgQueue[i].coords); - } - this._msgQueue = []; - }, + _onOpenSocket: function () { + for (var i = 0; i < this._msgQueue.length; i++) { + this._map.socket.send(this._msgQueue[i].msg); + L.Log.log(this._msgQueue[i].msg, this._msgQueue[i].coords); + } + this._msgQueue = []; + }, sendMessage: function (msg, coords) { - var socketState = this._map.socket.readyState; - if (socketState === 2 || socketState === 3) { - var socket = this._map._initSocket(); - if (socket) { - socket.onopen = L.bind(this._onOpenSocket, this); - socket.onmessage = L.bind(this._onMessage, this); - // clear queue - this._msgQueue = []; - // reload interrupted document - this._msgQueue.push({msg:'load part='+ this._currentPart + ' url=' + this.options.doc + - ( this.options.timestamp ? ' timestamp=' + this.options.timestamp : '') , coords: coords}); - // push next message - this._msgQueue.push({msg: msg, coords: coords}); - } - } - - if (socketState === 0) { - // push message while trying to connect socket again. - this._msgQueue.push({msg: msg, coords: coords}); - } - else if (socketState === 1) { - this._map.socket.send(msg); - L.Log.log(msg, L.OUTGOING, coords); - } + var socketState = this._map.socket.readyState; + if (socketState === 2 || socketState === 3) { + var socket = this._map._initSocket(); + if (socket) { + socket.onopen = L.bind(this._onOpenSocket, this); + socket.onmessage = L.bind(this._onMessage, this); + // clear queue + this._msgQueue = []; + // reload interrupted document + this._msgQueue.push({msg:'load part=' + this._currentPart + ' url=' + this.options.doc + + (this.options.timestamp ? ' timestamp=' + this.options.timestamp : ''), coords: coords}); + // push next message + this._msgQueue.push({msg: msg, coords: coords}); + } + } + + if (socketState === 0) { + // push message while trying to connect socket again. + this._msgQueue.push({msg: msg, coords: coords}); + } + else if (socketState === 1) { + this._map.socket.send(msg); + L.Log.log(msg, L.OUTGOING, coords); + } }, _tileOnLoad: function (done, tile) { @@ -571,11 +571,11 @@ L.TileLayer = L.GridLayer.extend({ done(e, tile); }, - _mapOnError: function (e) { - if (e.msg) { - this._map.setPermission('view'); - } - }, + _mapOnError: function (e) { + if (e.msg) { + this._map.setPermission('view'); + } + }, _parseServerCmd: function (msg) { var tokens = msg.split(/[ \n]+/); @@ -629,7 +629,7 @@ L.TileLayer = L.GridLayer.extend({ command.errorCmd = tokens[i].substring(4); } else if (tokens[i].substring(0, 5) === 'kind=') { - command.errorKind= tokens[i].substring(5); + command.errorKind = tokens[i].substring(5); } } if (command.tileWidth && command.tileHeight) { _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits