loleaflet: Add change tracking captions

Use the redline descriptions, such as, "Insert 'text'" etc. as captions
in change tracking sidebar objects.

Change-Id: I6c99f3b45725620b8888da77b0b8b4ebcdda10d2
This commit is contained in:
Pranav Kant 2017-03-09 17:20:13 +05:30
parent ab7fc23021
commit 8b3267e32e

View file

@ -94,6 +94,10 @@ L.Annotation = L.Layer.extend({
this._contentDate = L.DomUtil.create('div', 'loleaflet-annotation-date', tdAuthor); this._contentDate = L.DomUtil.create('div', 'loleaflet-annotation-date', tdAuthor);
var divMenu = L.DomUtil.create('div', this._data.trackchange ? 'loleaflet-annotation-menu-redline' : 'loleaflet-annotation-menu', tdMenu); var divMenu = L.DomUtil.create('div', this._data.trackchange ? 'loleaflet-annotation-menu-redline' : 'loleaflet-annotation-menu', tdMenu);
divMenu.annotation = this; divMenu.annotation = this;
if (this._data.trackchange) {
this._captionNode = L.DomUtil.create('div', 'lolefalet-annotation-caption', wrapper);
this._captionText = L.DomUtil.create('div', '', this._captionNode);
}
this._contentNode = L.DomUtil.create('div', 'loleaflet-annotation-content', wrapper); this._contentNode = L.DomUtil.create('div', 'loleaflet-annotation-content', wrapper);
this._editNode = L.DomUtil.create('div', 'loleaflet-annotation-edit', wrapper); this._editNode = L.DomUtil.create('div', 'loleaflet-annotation-edit', wrapper);
this._contentText = L.DomUtil.create('div', '', this._contentNode); this._contentText = L.DomUtil.create('div', '', this._contentNode);
@ -174,6 +178,9 @@ L.Annotation = L.Layer.extend({
this._contentText.innerHTML = this._editText.innerHTML = this._data.text; this._contentText.innerHTML = this._editText.innerHTML = this._data.text;
this._contentAuthor.innerHTML = this._data.author; this._contentAuthor.innerHTML = this._data.author;
this._contentDate.innerHTML = this._data.dateTime; this._contentDate.innerHTML = this._data.dateTime;
if (this._data.trackchange) {
this._captionText.innerHTML = this._data.description;
}
}, },
_updatePosition: function () { _updatePosition: function () {