Files
svgedit/dist/editor/system/extensions/ext-locale/foreignobject/en.js
2020-08-29 00:07:07 +02:00

35 lines
700 B
JavaScript

System.register([], function (exports) {
'use strict';
return {
execute: function () {
var en = exports('default', {
name: 'foreignObject',
buttons: [
{
title: 'Foreign Object Tool'
},
{
title: 'Edit ForeignObject Content'
}
],
contextTools: [
{
title: "Change foreignObject's width",
label: 'w'
},
{
title: "Change foreignObject's height",
label: 'h'
},
{
title: "Change foreignObject's font size",
label: 'font-size'
}
]
});
}
};
});