[DE mobile] Add merge cells in table options

This commit is contained in:
Julia Svinareva 2019-04-27 18:29:27 +03:00
parent 9c4725cfd3
commit 3bd69c7d11
4 changed files with 21 additions and 1 deletions

View file

@ -236,6 +236,7 @@ define([
$('#table-options-margins input').val(distance); $('#table-options-margins input').val(distance);
$('#table-options-margins .item-after').text(distance + ' ' + _metricText); $('#table-options-margins .item-after').text(distance + ' ' + _metricText);
} }
$('#table-merge-cells').single('click', _.bind(this.onMergeCellClick, this));
}, },
_initWrappView: function() { _initWrappView: function() {
@ -614,6 +615,12 @@ define([
me.api.tblApply(properties); me.api.tblApply(properties);
}, },
onMergeCellClick: function () {
if (this.api) {
this.api.MergeCells();
}
},
onBorderSize: function (e) { onBorderSize: function (e) {
var $target = $(e.currentTarget), var $target = $(e.currentTarget),
value = $target.val(); value = $target.val();

View file

@ -220,6 +220,17 @@
</li> </li>
</ul> </ul>
</div> </div>
<div class="list-block" style="margin-bottom: 40px;">
<ul>
<a id="table-merge-cells" class="item-link no-indicator">
<div class="item-content">
<div class="item-inner">
<div class="item-title"><%= scope.textMergeCells %></div>
</div>
</div>
</a>
</ul>
</div>
</div> </div>
</div> </div>
</div> </div>

View file

@ -242,7 +242,8 @@ define([
textBandedRow: 'Banded Row', textBandedRow: 'Banded Row',
textFirstColumn: 'First Column', textFirstColumn: 'First Column',
textLastColumn: 'Last Column', textLastColumn: 'Last Column',
textBandedColumn: 'Banded Column' textBandedColumn: 'Banded Column',
textMergeCells: 'Merge Cells'
} }
})(), DE.Views.EditTable || {})) })(), DE.Views.EditTable || {}))
}); });

View file

@ -338,6 +338,7 @@
"DE.Views.EditTable.textTotalRow": "Total Row", "DE.Views.EditTable.textTotalRow": "Total Row",
"DE.Views.EditTable.textWithText": "Move with Text", "DE.Views.EditTable.textWithText": "Move with Text",
"DE.Views.EditTable.textWrap": "Wrap", "DE.Views.EditTable.textWrap": "Wrap",
"DE.Views.EditTable.textMergeCells": "Merge Cells",
"DE.Views.EditText.textAdditional": "Additional", "DE.Views.EditText.textAdditional": "Additional",
"DE.Views.EditText.textAdditionalFormat": "Additional Formatting", "DE.Views.EditText.textAdditionalFormat": "Additional Formatting",
"DE.Views.EditText.textAllCaps": "All Caps", "DE.Views.EditText.textAllCaps": "All Caps",