При нажатии на кнопку добавить картинку, выпадающее меню заходит за шаблон сайта BUEditor (Drupal 6)
То же самое с кнопкой добавить ссылку.
Вставить/редактировать изображение
js:
var form = [
{name: 'src', title: 'Image URL', required: true, suffix: E.imce.button('attr_src')},
{name: 'width', title: 'Width x Height', suffix: ' x ', getnext: true, attributes: {size: 3}},
{name: 'height', attributes: {size: 3}},
{name: 'alt', title: 'Alternative text', required: true}
];
E.tagDialog('img', form, {title: 'Insert/edit image'});
var form = [
{name: 'src', title: 'Image URL', required: true, suffix: E.imce.button('attr_src')},
{name: 'width', title: 'Width x Height', suffix: ' x ', getnext: true, attributes: {size: 3}},
{name: 'height', attributes: {size: 3}},
{name: 'alt', title: 'Alternative text', required: true}
];
E.tagDialog('img', form, {title: 'Insert/edit image'});
Вставить ссылку на переход
js:
var form = [
{name: 'href', title: 'URL ссылки', required: true, suffix: E.imce.button('attr_href')},
{name: 'html', title: 'Имя ссылки'},
{name: 'title', title: 'Подпись ссылки'}
];
E.tagDialog('a', form, {title: 'Insert/edit link'});
var form = [
{name: 'href', title: 'URL ссылки', required: true, suffix: E.imce.button('attr_href')},
{name: 'html', title: 'Имя ссылки'},
{name: 'title', title: 'Подпись ссылки'}
];
E.tagDialog('a', form, {title: 'Insert/edit link'});
Комментарии