summaryrefslogtreecommitdiffstats
path: root/index.js
blob: 43b349cb59e0bf0b894142f82a7ba4d8106a80b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var eejs = require('ep_etherpad-lite/node/eejs/');
var Changeset = require("ep_etherpad-lite/static/js/Changeset");

exports.eejsBlock_editbarMenuLeft = function (hook_name, args, cb) {
  args.content = args.content + eejs.require("ep_headline_buttons/templates/editbarButtons.ejs");
  return cb();
}

exports.eejsBlock_styles = function (hook_name, args, cb) {
  args.content = args.content + eejs.require("ep_headline_buttons/templates/editbarButtons_styles.ejs");
  return cb();
}