aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/autocomplete.js
diff options
context:
space:
mode:
Diffstat (limited to 'view/js/autocomplete.js')
-rw-r--r--view/js/autocomplete.js26
1 files changed, 2 insertions, 24 deletions
diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js
index 27011b4d4..92db42f6d 100644
--- a/view/js/autocomplete.js
+++ b/view/js/autocomplete.js
@@ -171,17 +171,6 @@ function string2bb(element) {
template: contact_format
};
- // Autocomplete forums
- forums = {
- match: /(^|\s)(\!\!*)([^ \n]{2,})$/,
- index: 3,
- cache: true,
- search: function(term, callback) { contact_search(term, callback, backend_url, 'f', extra_channels, spinelement=false); },
- replace: editor_replace,
- template: contact_format
- };
-
-
// Autocomplete hashtags
tags = {
match: /(^|\s)(\#)([^ \n]{2,})$/,
@@ -193,7 +182,6 @@ function string2bb(element) {
template: tag_format
};
-
smilies = {
match: /(^|\s)(:[a-z0-9_:]{2,})$/,
index: 2,
@@ -214,7 +202,7 @@ function string2bb(element) {
maxCount: 100
}
});
- textcomplete.register([contacts,forums,smilies,tags]);
+ textcomplete.register([contacts,smilies,tags]);
});
};
})( jQuery );
@@ -238,16 +226,6 @@ function string2bb(element) {
template: contact_format,
};
- // Autocomplete forums
- forums = {
- match: /(^\!)([^\n]{2,})$/,
- index: 2,
- cache: true,
- search: function(term, callback) { contact_search(term, callback, backend_url, 'f', [], spinelement='#nav-search-spinner'); },
- replace: basic_replace,
- template: contact_format
- };
-
// Autocomplete hashtags
tags = {
match: /(^\#)([^ \n]{2,})$/,
@@ -271,7 +249,7 @@ function string2bb(element) {
maxCount: 100
}
});
- textcomplete.register([contacts,forums,tags]);
+ textcomplete.register([contacts,tags]);
});
textcomplete.on('selected', function() { this.editor.el.form.submit(); });