mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
MDL-44770 editor_atto: moved table context menu
This commit is contained in:
commit
b1421abdb6
@ -32,8 +32,8 @@ $string['columns'] = 'Columns';
|
||||
$string['rows'] = 'Rows';
|
||||
$string['both'] = 'Both';
|
||||
$string['edittable'] = 'Edit table';
|
||||
$string['addrowafter'] = 'Add row after';
|
||||
$string['addcolumnafter'] = 'Add column after';
|
||||
$string['addrowafter'] = 'Insert row after current cell';
|
||||
$string['addcolumnafter'] = 'Insert column after current cell';
|
||||
$string['moverowup'] = 'Move row up';
|
||||
$string['moverowdown'] = 'Move row down';
|
||||
$string['movecolumnleft'] = 'Move column left';
|
||||
|
@ -296,7 +296,7 @@ Y.namespace('M.atto_table').Button = Y.Base.create('button', Y.M.editor_atto.Edi
|
||||
|
||||
// Show the context menu, and align to the current position.
|
||||
this._contextMenu.show();
|
||||
this._contextMenu.align(e.tableCell, [Y.WidgetPositionAlign.TL, Y.WidgetPositionAlign.BL]);
|
||||
this._contextMenu.align(this.buttons.table, [Y.WidgetPositionAlign.TL, Y.WidgetPositionAlign.BL]);
|
||||
|
||||
// If there are any anchors in the bounding box, focus on the first.
|
||||
if (boundingBox.one('a')) {
|
||||
|
File diff suppressed because one or more lines are too long
@ -296,7 +296,7 @@ Y.namespace('M.atto_table').Button = Y.Base.create('button', Y.M.editor_atto.Edi
|
||||
|
||||
// Show the context menu, and align to the current position.
|
||||
this._contextMenu.show();
|
||||
this._contextMenu.align(e.tableCell, [Y.WidgetPositionAlign.TL, Y.WidgetPositionAlign.BL]);
|
||||
this._contextMenu.align(this.buttons.table, [Y.WidgetPositionAlign.TL, Y.WidgetPositionAlign.BL]);
|
||||
|
||||
// If there are any anchors in the bounding box, focus on the first.
|
||||
if (boundingBox.one('a')) {
|
||||
|
@ -294,7 +294,7 @@ Y.namespace('M.atto_table').Button = Y.Base.create('button', Y.M.editor_atto.Edi
|
||||
|
||||
// Show the context menu, and align to the current position.
|
||||
this._contextMenu.show();
|
||||
this._contextMenu.align(e.tableCell, [Y.WidgetPositionAlign.TL, Y.WidgetPositionAlign.BL]);
|
||||
this._contextMenu.align(this.buttons.table, [Y.WidgetPositionAlign.TL, Y.WidgetPositionAlign.BL]);
|
||||
|
||||
// If there are any anchors in the bounding box, focus on the first.
|
||||
if (boundingBox.one('a')) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user