[Libreoffice-commits] online.git: Branch 'distro/collabora/milestone-3' - 3 commits - loleaflet/Makefile loleaflet/src
Mihai Varga
mihai.varga at collabora.com
Mon Jul 13 09:38:00 PDT 2015
loleaflet/Makefile | 2 +-
loleaflet/src/control/Control.Parts.js | 2 +-
loleaflet/src/control/Parts.js | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 22aa555c4ede160f9761f97c80c46f906e398bbc
Author: Mihai Varga <mihai.varga at collabora.com>
Date: Mon Jul 13 19:19:07 2015 +0300
loleaflet: bump version to 1.1.15 after tarball
diff --git a/loleaflet/Makefile b/loleaflet/Makefile
index 3fefab7..2794cc0 100644
--- a/loleaflet/Makefile
+++ b/loleaflet/Makefile
@@ -1,6 +1,6 @@
# Version number of loleaflet, no need to be in sync with the loolwsd one
-VERSION=1.1.14
+VERSION=1.1.15
# Version number of the bundled 'draw' thing
DRAW_VERSION=0.2.4
commit d561fa5c7700393524947492dc57d348d4ceb130
Author: Mihai Varga <mihai.varga at collabora.com>
Date: Mon Jul 13 19:18:37 2015 +0300
loleaflet: bump version to 1.1.14 for tarball
diff --git a/loleaflet/Makefile b/loleaflet/Makefile
index cad875b..3fefab7 100644
--- a/loleaflet/Makefile
+++ b/loleaflet/Makefile
@@ -1,6 +1,6 @@
# Version number of loleaflet, no need to be in sync with the loolwsd one
-VERSION=1.1.13
+VERSION=1.1.14
# Version number of the bundled 'draw' thing
DRAW_VERSION=0.2.4
commit e008192d476d8684b182cea8ab56118b2b7aa179
Author: Mihai Varga <mihai.varga at collabora.com>
Date: Mon Jul 13 19:16:46 2015 +0300
loleaflet: renamed 'previous' to 'prev'
diff --git a/loleaflet/src/control/Control.Parts.js b/loleaflet/src/control/Control.Parts.js
index 07f67f1..cc36f80 100644
--- a/loleaflet/src/control/Control.Parts.js
+++ b/loleaflet/src/control/Control.Parts.js
@@ -26,7 +26,7 @@ L.Control.Parts = L.Control.extend({
},
_prevPart: function () {
- this._map.setPart('previous');
+ this._map.setPart('prev');
},
_nextPart: function () {
diff --git a/loleaflet/src/control/Parts.js b/loleaflet/src/control/Parts.js
index 69d9e83..84e9014 100644
--- a/loleaflet/src/control/Parts.js
+++ b/loleaflet/src/control/Parts.js
@@ -4,7 +4,7 @@
L.Map.include({
setPart: function (part) {
var docLayer = this._docLayer
- if (part === 'previous') {
+ if (part === 'prev') {
if (docLayer._currentPart > 0) {
docLayer._currentPart -= 1;
}
More information about the Libreoffice-commits
mailing list