插件目录 » jsToolbar按钮扩展
作者 | T Leish | |
---|---|---|
网站 | https://github.com/tleish/redmine_jstoolbar_ext_buttons | |
代码仓库 | https://github.com/tleish/redmine_jstoolbar_ext_buttons.git | |
注册于 | 2014-05-21(约10年前) | |
当前版本 | 0.2.1 | |
兼容 | Redmine 3.1.x, 3.0.x, 2.6.x, 2.5.x, 2.4.x, 2.3.x, 2.2.x, 2.1.x, 2.0.x | |
用户评分 |
摘要¶
Redmine jsToolbar按钮扩展为Redmine维基和文本编辑器工具栏添加了一些额外的按钮。
要求¶
此插件需要安装Redmine jsToolbar Ext插件。
按钮¶
这些按钮方便插入文本。* 插入水平线 * 插入链接标题 * 插入Ruby语法格式 * 插入JavaScript语法格式 * Textile快速参考
按钮自定义¶
要添加/删除自己的按钮到列表中,更新以下文件
- plugins/redmine_jstoolbar_ext_buttons/assets/javascripts/redmine_jstoolbar_ext_buttons.js。
- plugins/redmine_jstoolbar_ext_buttons/assets/stylesheets/redmine_jstoolbar_ext_stylesheets.js。
{
title: 'My Button Title',
after: 'h3', // element to place button after, in this particular case after the button with the class name '.jstb_h3'
fn: {
wiki: function () {
this.encloseLineSelection('\n---\n', '', function (str) {
if (str.length > 0) { str += '\n'; }
return str;
});
}
}
}
对于其他维基功能示例,请查看Redmine Github仓库中的jsToolbar源代码
另请参阅:¶
安装说明
$ cd redmine/plugins $ git clone https://github.com/tleish/redmine_jstoolbar_ext $ git clone https://github.com/tleish/redmine_jstoolbar_ext_buttons
重启Redmine
变更日志
0.2.1 (2015-09-16)
兼容Redmine 3.1.x, 3.0.x, 2.6.x, 2.5.x, 2.4.x, 2.3.x, 2.2.x, 2.1.x, 2.0.x。
- 支持Redmine 3
- 修复textile/markdown错误
0.1.0 (2014-05-21)
兼容Redmine 2.5.x, 2.4.x, 2.3.x, 2.2.x, 2.1.x, 2.0.x。