0

哦神圣的Textboxio,

如何在不删除颜色、突出显示和字体大小的情况下从工具栏 ui 中删除字体?

如果无法删除,我只想显示以下字体...

{ "value" : "Arial", "display" : "Arial" },
{ "value" : "Arial Black", "display" : "Arial Black" },
{ "value" : "Arial Narrow", "display" : "Arial Narrow" },
{ "value" : "Helvetica", "display" : "Helvetica" },
{ "value" : "Impact", "display" : "Impact" },
{ "value" : "Lucida Grande", "display" : "Lucida Grande" },
{ "value" : "Tahoma", "display" : "Tahoma" },
{ "value" : "Trebuchet MS", "display" : "Trebuchet MS" },
{ "value" : "Verdana", "display" : "Verdana" },
{ "value" : "Courier New", "display" : "Courier New" },
{ "value" : "Georgia", "display" : "Georgia" },
{ "value" : "Palatino Linotype", "display" : "Palatino Linotype" },
{ "value" : "Times New Roman", "display" : "Times New Roman" },
{ "value" : "Century Gothic", "display" : "Century Gothic" }
4

3 回答 3

1

我们还没有 API 来配置字体列表。您可以创建一个看起来相同的新菜单,但您将无法访问我们未来所做的更改(1.2 中添加了 sup/sub/strike)。

更多信息可在我们的更改工具栏文章和特定的工具栏配置文档中找到,但此配置将执行此操作:

var customFontMenu = {
  id    : 'font',
  label : 'Font Menu', // note this is not translated, the real menu is
  items : [ 'font-size', 'font-color', 'superscript', 'subscript', 'strikethrough' ]
};

var config = {
  ui : {
    toolbar : {
      items : ['undo', 'insert', 'style', 'emphasis', 'align', 'listindent', [ customFontMenu, 'removeformat' ], 'tools' ]
    }
  }
};

var editor = textboxio.replace('#targetId', config);

我还建议在我们的支持系统中记录一张票,以便我们可以将您的名字添加到字体列表可配置任务中。

于 2015-04-21T22:18:47.877 回答
0

在我从 ephox 获得修复之前,我将从插件中分离字体。

于 2015-04-15T14:46:50.763 回答
0

字体定制已包含在我们的 1.3 版本中:

http://docs.ephox.com/display/tbio/fonts

于 2015-09-09T23:52:23.777 回答