The logic of the JavaScript for showing and hiding additional options in
the orders search form wasn't quite right, resulting in the +/- control
being hidden incorrectly.
This patch corrects and simplifies the JS in order to fix the problem.
To test:
- Open any page in Acquisitions which shows the orders search
form in the header search bar (for instance, Acquisitions home).
- Open the orders search tab and click on the "+" to show more
options.
- Click the "-" to hide the additional options. The additional options
should now be hidden and the "+" displayed.
---
.../prog/en/includes/acquisitions-search.inc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-search.inc
b/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-search.inc
index 5855c78..5aebf54 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-search.inc
+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-search.inc
@@ -14,8 +14,8 @@
<label for="title">Title: </label> <input type="text" id="title"
name="title" size="15" value="[% title %]" />
<label for="searchsupplier">Vendor:</label> <input type="text"
id="searchsupplier" name="name" size="15" value="[% name|html %]" />
<input type="hidden" id="do_search" name="do_search" value="do" />
- <span class="filteraction" id="filteraction_off" style="display:none">
<a href="#"
onclick="$('#filters').toggle();$('.filteraction').hide();">[-]</a></span>
- <span class="filteraction" id="filteraction_on"> <a href="#"
onclick="$('#filters').show();$('.filteraction').toggle();">[+]</a></span>
+ <span class="filteraction" id="filteraction_off" style="display:none">
<a href="#" onclick="$('#filters,.filteraction').toggle();">[-]</a></span>
+ <span class="filteraction" id="filteraction_on"> <a href="#"
onclick="$('#filters,.filteraction').toggle();">[+]</a></span>
<input value="Submit" class="submit" type="submit" /> <a
href="/cgi-bin/koha/acqui/histsearch.pl">Advanced search</a>
<p id="filters" style="display:none">
<label for="basket">Basket: </label><input type="text" name="basket"
id="basket" />
--
1.7.9.5
_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/