@@ -, +, @@ hovering their labels --- .../prog/en/modules/admin/z3950servers.tt | 27 ++++++++++++++++++- 1 files changed, 25 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt @@ -46,6 +46,29 @@ timeout: { number: true } } }); + + // A few documentation hints for users adding/editing SRU server: + $("#host_docline").hide(); + $("#database_docline").hide(); + [% IF (server.servertype||type) == 'sru' %] + $("#host_label").hover( + function( event ) { + $("#host_docline").show(); + }, + function( event ) { + $("#host_docline").hide(); + } + ); + $("#database_label").hover( + function( event ) { + $("#database_docline").show(); + }, + function( event ) { + $("#database_docline").hide(); + } + ); + [% END %] + $("#serverentry").submit(function( event ) { // copy show_sru_fields to hidden counterpart $('#sru_fields').val( $('#show_sru_fields').val() ); @@ -117,11 +140,11 @@
  1. -
  2. Required +
  3. Required. The host name should only contain the domain name.
  4. Required
  5. -
  6. Required +
  7. Required. The path name goes into Database, whereas the domain name goes into Hostname.
  8. --