diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-08-23 21:38:56 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-08-23 21:38:56 +0000 |
commit | a69e45f03359ae0d94697d5cc48c4c29cd213cd8 (patch) | |
tree | 5fb774ab171758801be13d6cd79ddabb7eff7ee0 | |
parent | 63afc602551975c9082e2a84102d08433c08597d (diff) | |
download | elgg-a69e45f03359ae0d94697d5cc48c4c29cd213cd8.tar.gz elgg-a69e45f03359ae0d94697d5cc48c4c29cd213cd8.tar.bz2 |
hacked the quicksearch javascript to remove the label - could have made the class of that div be 0 size or hidden
-rw-r--r-- | vendors/jquery.quicksearch.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vendors/jquery.quicksearch.js b/vendors/jquery.quicksearch.js index d572514e7..700872bce 100644 --- a/vendors/jquery.quicksearch.js +++ b/vendors/jquery.quicksearch.js @@ -135,12 +135,14 @@ jQuery(function ($) { function make_form_label()
{
+/*
if (!is_empty(options.labelText)) {
return '<label for="' + options.randomElement + '" '+
'class="' + options.labelClass + '">'
+ options.labelText
- + '</label> ';
+ + '</label> ';
}
+*/
return '';
}
|