Moving the formatting buttons to a plugin.

This commit is contained in:
cohitre 2012-06-21 13:56:26 -07:00
parent e4ff4021ab
commit 103dc68e4d
7 changed files with 176 additions and 106 deletions

View file

@ -0,0 +1,6 @@
var eejs = require('ep_etherpad-lite/node/eejs/');
exports.eejsBlock_editbarMenuLeft = function (hook_name, args, cb) {
args.content = args.content + eejs.require("ep_formatting/templates/buttons.ejs");
return cb();
}