mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-29 08:09:58 +09:00
XEED 테이블에서 행과 열의 갯수가 뒤바뀌어 출력되는 버그 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7976 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
a23cce4c3e
commit
b6b81dcaae
1 changed files with 2 additions and 2 deletions
|
|
@ -2903,8 +2903,8 @@ Table = xe.createPlugin('Table', {
|
||||||
|
|
||||||
$fieldset = $layer.find('fieldset.wh');
|
$fieldset = $layer.find('fieldset.wh');
|
||||||
$input = $fieldset.find('input:text');
|
$input = $fieldset.find('input:text');
|
||||||
cfg.cols = $input.eq(0).val() - 0;
|
cfg.rows = $input.eq(0).val() - 0;
|
||||||
cfg.rows = $input.eq(1).val() - 0;
|
cfg.cols = $input.eq(1).val() - 0;
|
||||||
cfg.width = $input.eq(2).val() - 0 + $fieldset.find('button.selected').text();
|
cfg.width = $input.eq(2).val() - 0 + $fieldset.find('button.selected').text();
|
||||||
|
|
||||||
self.cast('EXEC_TABLE', [cfg]);
|
self.cast('EXEC_TABLE', [cfg]);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue