about summary refs log tree commit diff stats
path: root/wiki/lib/scripts/search.js
diff options
context:
space:
mode:
authorahriman <ahriman@falte.red>2019-01-02 04:57:35 +0000
committerahriman <ahriman@falte.red>2019-01-02 04:57:35 +0000
commit2bd7f83a6495011ada78ca8a9f2af417caf01760 (patch)
treef9acdb7f09e011c65330ab993d4db3620787dbfb /wiki/lib/scripts/search.js
parentbcb215c3a7e914d05f166846a33860e48bba64fb (diff)
downloadsite-2bd7f83a6495011ada78ca8a9f2af417caf01760.tar.gz
removed dokuwiki
Diffstat (limited to 'wiki/lib/scripts/search.js')
-rw-r--r--wiki/lib/scripts/search.js48
1 files changed, 0 insertions, 48 deletions
diff --git a/wiki/lib/scripts/search.js b/wiki/lib/scripts/search.js
deleted file mode 100644
index 3631708..0000000
--- a/wiki/lib/scripts/search.js
+++ /dev/null
@@ -1,48 +0,0 @@
-jQuery(function () {
-    'use strict';
-
-    const $searchForm = jQuery('.search-results-form');
-    if (!$searchForm.length) {
-        return;
-    }
-
-    const $toggleAssistanceButton = jQuery('<button>')
-        .addClass('toggleAssistant')
-        .attr('type', 'button')
-        .attr('aria-expanded', 'false')
-        .text(LANG.search_toggle_tools)
-        .prependTo($searchForm.find('fieldset'))
-    ;
-
-    $toggleAssistanceButton.on('click', function () {
-        jQuery('.advancedOptions').toggle(0, function () {
-            var $me = jQuery(this);
-            if ($me.attr('aria-hidden')) {
-                $me.removeAttr('aria-hidden');
-                $toggleAssistanceButton.attr('aria-expanded', 'true');
-                DokuCookie.setValue('sa', 'on');
-            } else {
-                $me.attr('aria-hidden', 'true');
-                $toggleAssistanceButton.attr('aria-expanded', 'false');
-                DokuCookie.setValue('sa', 'off');
-            }
-        });
-    });
-
-    if (DokuCookie.getValue('sa') === 'on') {
-        $toggleAssistanceButton.click();
-    }
-
-    $searchForm.find('.advancedOptions .toggle div.current').on('click', function () {
-        var $me = jQuery(this);
-        $me.parent().siblings().removeClass('open');
-        $me.parent().siblings().find('ul:first').attr('aria-expanded', 'false');
-        $me.parent().toggleClass('open');
-        if ($me.parent().hasClass('open')) {
-            $me.parent().find('ul:first').attr('aria-expanded', 'true');
-        } else {
-            $me.parent().find('ul:first').attr('aria-expanded', 'false');
-        }
-    });
-
-});