Owen Leonard
68b30468c3
Current jQuery-driven tabs are done using a very old version of the tabs plugin. This patch upgrades jQueryUI to the latest version and adds the tabs widget dependency to the jqueryui js file and updates the syntax for existing tabs: - $("#foo > ul").tabs(); changes to $("#foo").tabs(); - Remove full URL from tab links (use #anchor only). Pages with "static" tabs (tabs which are built in the markup rather than generated by the plugin) have been modified to use their own style. Examples: pay.tt in the staff client and opac-readingrecord.tt in the OPAC. Edit: Minor revision to some uncorrected markup Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
22 lines
862 B
HTML
22 lines
862 B
HTML
<script>$(document).ready(function(){
|
|
$("input[name=q]:eq(0)").focus();
|
|
});</script>
|
|
|
|
<div class="gradient">
|
|
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName %]</a></h1><!-- Begin Cataloging Resident Search Box -->
|
|
<div id="header_search">
|
|
<div id="addbooks_search" class="residentsearch">
|
|
<p class="tip">Search the catalog and the reservoir:</p>
|
|
<form name="search" action="addbooks.pl">
|
|
<input type="text" name="q" size="40" />
|
|
<input type="submit" class="submit" value="Submit" />
|
|
</form>
|
|
</div>
|
|
[% INCLUDE 'patron-search-box.inc' %]
|
|
<ul>
|
|
<li><a href="#addbooks_search">Cataloging search</a></li>
|
|
[% IF ( CAN_user_circulate ) %]<li><a href="#circ_search">Check out</a></li>[% END %]
|
|
</ul>
|
|
</div><!-- /header_search -->
|
|
</div><!-- /gradient -->
|
|
<!-- End Cataloging Resident Search Box -->
|