aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/lib/scripts/script.js
diff options
context:
space:
mode:
authorOliver Geisen <oliver@rehkopf-geisen.de>2017-08-14 11:37:57 +0200
committerOliver Geisen <oliver@rehkopf-geisen.de>2017-08-14 11:37:57 +0200
commit564ad40a29ed6fd13280ffa4c2db9a67ff064796 (patch)
treeb4858dbca01fae1d198657090122d38a21c7f840 /lib/scripts/script.js
parentf5610e74fa3a263a847ddf194eaa926da1cc8a69 (diff)
downloaddokuwiki-564ad40a29ed6fd13280ffa4c2db9a67ff064796.tar.gz
dokuwiki-564ad40a29ed6fd13280ffa4c2db9a67ff064796.zip
Removed progressbar from searchform
Diffstat (limited to 'lib/scripts/script.js')
-rw-r--r--lib/scripts/script.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/scripts/script.js b/lib/scripts/script.js
index 5fddb0431..97edef0b7 100644
--- a/lib/scripts/script.js
+++ b/lib/scripts/script.js
@@ -19,39 +19,6 @@ if (clientPC.indexOf('opera')!=-1) {
}
/**
- * Prints a animated gif to show the search is performed
- *
- * Because we need to modify the DOM here before the document is loaded
- * and parsed completely we have to rely on document.write()
- *
- * @author Andreas Gohr <andi@splitbrain.org>
- */
-function showLoadBar(){
-
- document.write('<img src="'+DOKU_BASE+'lib/images/loading.gif" '+
- 'width="150" height="12" alt="..." />');
-
- /* this does not work reliable in IE
- obj = $(id);
-
- if(obj){
- obj.innerHTML = '<img src="'+DOKU_BASE+'lib/images/loading.gif" '+
- 'width="150" height="12" alt="..." />';
- obj.style.display="block";
- }
- */
-}
-
-/**
- * Disables the animated gif to show the search is done
- *
- * @author Andreas Gohr <andi@splitbrain.org>
- */
-function hideLoadBar(id){
- jQuery('#' + id).hide();
-}
-
-/**
* Handler to close all open Popups
*/
function closePopups(){