summaryrefslogtreecommitdiffstats
path: root/etherpad/src/plugins/urlIndexer/main.js
diff options
context:
space:
mode:
authorEgil Moeller <egil.moller@freecode.no>2010-04-20 21:00:41 +0200
committerEgil Moeller <egil.moller@freecode.no>2010-04-20 21:00:41 +0200
commit0b4ed7432d750f98aa6f62e5515b57f3e7e8a4d4 (patch)
tree75e9a3cd5b5cd75f6d1f2cbed9773bd8b042a200 /etherpad/src/plugins/urlIndexer/main.js
parentbd2190f0453f6a189b84b3ff2f1af05d5e023801 (diff)
downloadetherpad-0b4ed7432d750f98aa6f62e5515b57f3e7e8a4d4.tar.gz
etherpad-0b4ed7432d750f98aa6f62e5515b57f3e7e8a4d4.tar.bz2
etherpad-0b4ed7432d750f98aa6f62e5515b57f3e7e8a4d4.zip
Home & pad/url search buttons
Diffstat (limited to 'etherpad/src/plugins/urlIndexer/main.js')
-rw-r--r--etherpad/src/plugins/urlIndexer/main.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/etherpad/src/plugins/urlIndexer/main.js b/etherpad/src/plugins/urlIndexer/main.js
index 0b2847f..18bdef1 100644
--- a/etherpad/src/plugins/urlIndexer/main.js
+++ b/etherpad/src/plugins/urlIndexer/main.js
@@ -4,10 +4,11 @@ import("sqlbase.sqlobj");
import("sqlbase.sqlcommon");
function init() {
- this.hooks = ['padModelWriteToDB', 'handlePath'];
+ this.hooks = ['padModelWriteToDB', 'handlePath', 'docbarItemsTagBrowser'];
this.description = 'Indexes URLs linked to in pads so that they can be displayed outside pads, searched for etc.';
this.padModelWriteToDB = hooks.padModelWriteToDB;
this.handlePath = hooks.handlePath;
+ this.docbarItemsTagBrowser = hooks.docbarItemsTagBrowser;
this.install = install;
this.uninstall = uninstall;