twitter-bootstrap – 自定义WYSIHTML5工具栏

如何在 WYSIHTML5自定义工具栏.我想禁用字体大小和图像插入按钮,特别是对于Bootstrap X-editable中使用的WYSIHTML5版本.

解决方法

如果您碰巧使用 bootstrap-wysiwyg/bootstrap3-wysiwyg(例如gem bootstrap-wysihtml5-rails使用),从3.0版开始,您需要将其嵌套在工具栏中:
$('#some-textarea').wysihtml5({
  toolbar: {
    "font-styles": true,// Font styling,e.g. h1,h2,etc.
    "emphasis": true,// Italics,bold,etc.
    "lists": true,// (Un)ordered lists,e.g. Bullets,Numbers.
    "html": false,// Button which allows you to edit the generated HTML.
    "link": true,// Button to insert a link.
    "image": true,// Button to insert an image.
    "color": false,// Button to change color of font
    "blockquote": true,// Blockquote
    "size": <buttonsize> // options are xs,sm,lg
  }
});

相关文章

BootStrapValidator可以用于完成基于BootStrap搭建的前端UI中的输入验证,由于本插件完全基于BootStrap...
顶求网首页是一个web2.0博客类的网站首页,在该网站中用户可以发表博客,也可以推荐图书给其他用户。所...
一直想改版网站首页的图书展示部分,以前的展示是使用BootStrap的传统的collapse,网页篇幅占用大,也不...
在视窗足够大的时候是没有任何问题的,但是当拖动改变视窗的大小后会发现布局又变乱了,这个问题困扰了...
BootStrap中的tabs控件以其简单易用而很受广大开发者的欢迎。但是,它的样式比较单一,如何才能在其原有...
BootStrap是基于HTML、CSS和JavaScript的框架,使你只需要写简单的代码就可以很快的搭建一个还不错的前...