loleaflet: L.Socket should not be global. (fixup)
This commit is contained in:
parent
c8a1e7cbca
commit
287768c6bc
2 changed files with 5 additions and 5 deletions
|
@ -148,7 +148,7 @@ L.Map.include({
|
||||||
if (this.getDocType() !== 'presentation') {
|
if (this.getDocType() !== 'presentation') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
L.Socket.sendMessage('uno .uno:InsertPage');
|
this._socket.sendMessage('uno .uno:InsertPage');
|
||||||
var docLayer = this._docLayer;
|
var docLayer = this._docLayer;
|
||||||
|
|
||||||
this.fire('insertpage', {
|
this.fire('insertpage', {
|
||||||
|
@ -164,7 +164,7 @@ L.Map.include({
|
||||||
if (this.getDocType() !== 'presentation') {
|
if (this.getDocType() !== 'presentation') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
L.Socket.sendMessage('uno .uno:DuplicatePage');
|
this._socket.sendMessage('uno .uno:DuplicatePage');
|
||||||
var docLayer = this._docLayer;
|
var docLayer = this._docLayer;
|
||||||
|
|
||||||
this.fire('insertpage', {
|
this.fire('insertpage', {
|
||||||
|
@ -181,7 +181,7 @@ L.Map.include({
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
L.Socket.sendMessage('uno .uno:DeletePage');
|
this._socket.sendMessage('uno .uno:DeletePage');
|
||||||
var docLayer = this._docLayer;
|
var docLayer = this._docLayer;
|
||||||
// TO DO: Deleting all the pages causes problem.
|
// TO DO: Deleting all the pages causes problem.
|
||||||
if (docLayer._parts === 1) {
|
if (docLayer._parts === 1) {
|
||||||
|
|
|
@ -335,7 +335,7 @@ L.Map.Keyboard = L.Handler.extend({
|
||||||
|
|
||||||
// need to handle Ctrl + Alt + C separately for Firefox
|
// need to handle Ctrl + Alt + C separately for Firefox
|
||||||
if (e.originalEvent.key === 'c' && e.originalEvent.altKey) {
|
if (e.originalEvent.key === 'c' && e.originalEvent.altKey) {
|
||||||
L.Socket.sendMessage('uno .uno:InsertAnnotation');
|
this._map._socket.sendMessage('uno .uno:InsertAnnotation');
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -387,7 +387,7 @@ L.Map.Keyboard = L.Handler.extend({
|
||||||
case 86: // v
|
case 86: // v
|
||||||
return true;
|
return true;
|
||||||
case 112: // f1
|
case 112: // f1
|
||||||
L.Socket.sendMessage('uno .uno:NoteVisible');
|
this._map._socket.sendMessage('uno .uno:NoteVisible');
|
||||||
case 188: // ,
|
case 188: // ,
|
||||||
this._map._socket.sendMessage('uno .uno:SubScript');
|
this._map._socket.sendMessage('uno .uno:SubScript');
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue