aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authorStefan Parviainen <saparvia@caterva.eu>2014-12-20 15:23:12 +0100
committerStefan Parviainen <saparvia@caterva.eu>2014-12-20 15:23:12 +0100
commit92a46c34c7d66415ab2bcd7a03dcc42fc6391af4 (patch)
tree16de6b40178173ecd924efc3dcfe542157f5c661 /view/js
parentc78fb89f62cd88107ac05c7631804c4f27e70319 (diff)
downloadvolse-hubzilla-92a46c34c7d66415ab2bcd7a03dcc42fc6391af4.tar.gz
volse-hubzilla-92a46c34c7d66415ab2bcd7a03dcc42fc6391af4.tar.bz2
volse-hubzilla-92a46c34c7d66415ab2bcd7a03dcc42fc6391af4.zip
Remove unnecessary logging
Diffstat (limited to 'view/js')
-rw-r--r--view/js/autocomplete.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js
index 87f854d3f..31d693c7b 100644
--- a/view/js/autocomplete.js
+++ b/view/js/autocomplete.js
@@ -4,7 +4,6 @@
* require jQuery, jquery.textcomplete
*/
function mysearch(term, callback, backend_url) {
- console.log("Searching for: "+term);
var postdata = {
start:0,
count:100,
@@ -39,12 +38,11 @@ function replace(item) {
(function( $ ){
$.fn.contact_autocomplete = function(backend_url) {
- console.log('autocomplete using '+backend_url);
// Autocomplete contacts
contacts = {
match: /(^|\s)(@!?)(\w{2,})$/,
index: 3,
- search: function(term, callback) { console.log("serching for:"+term); mysearch(term, callback, backend_url); },
+ search: function(term, callback) { mysearch(term, callback, backend_url); },
replace: replace,
template: format,
}