MDL-44770 editor_atto: moved table context menu

This commit is contained in:
Jetha Chan 2014-04-01 15:45:12 +08:00
commit b1421abdb6
5 changed files with 7 additions and 7 deletions

View File

@ -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';

View File

@ -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

View File

@ -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')) {

View File

@ -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')) {