View | Details | Raw Unified | Return to bug 11333
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/staff-global.js (-1 / +3 lines)
Lines 13-19 function _(s) { return s; } // dummy function for gettext Link Here
13
    if($("#header_search #catalog_search").length > 0){ shortcut.add('Alt+q',function (){ $("#header_search").tabs("select","#catalog_search"); $("#search-form").focus(); }); } else { shortcut.add('Alt+q',function(){ location.href="/cgi-bin/koha/catalogue/search.pl"; }); }
13
    if($("#header_search #catalog_search").length > 0){ shortcut.add('Alt+q',function (){ $("#header_search").tabs("select","#catalog_search"); $("#search-form").focus(); }); } else { shortcut.add('Alt+q',function(){ location.href="/cgi-bin/koha/catalogue/search.pl"; }); }
14
14
15
    $(".focus").focus();
15
    $(".focus").focus();
16
    $(".validated").validate();
16
    $(".validated").each(function() {
17
        $(this).validate();
18
    });
17
19
18
    $("#logout").on("click",function(){
20
    $("#logout").on("click",function(){
19
        logOut();
21
        logOut();
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt (-3 / +2 lines)
Lines 84-90 function reloadPage(p) { Link Here
84
	<div id="csvnew">
84
	<div id="csvnew">
85
					<h3>New CSV export profile</h3>
85
					<h3>New CSV export profile</h3>
86
86
87
					     <form action="/cgi-bin/koha/tools/csv-profiles.pl" method="post">
87
					     <form action="/cgi-bin/koha/tools/csv-profiles.pl" class="validated" method="post">
88
						<fieldset class="rows">
88
						<fieldset class="rows">
89
                          <ol>
89
                          <ol>
90
                            <li><label for="profile_name" class="required">Profile name: </label>
90
                            <li><label for="profile_name" class="required">Profile name: </label>
Lines 176-182 function reloadPage(p) { Link Here
176
<div id="csvedit">
176
<div id="csvedit">
177
					<h3>Modify or delete a CSV export profile</h3>
177
					<h3>Modify or delete a CSV export profile</h3>
178
178
179
				      	    <form action="/cgi-bin/koha/tools/csv-profiles.pl" method="post">
179
				      	    <form action="/cgi-bin/koha/tools/csv-profiles.pl" class="validated" method="post">
180
						<fieldset class="rows">
180
						<fieldset class="rows">
181
                            <ol>
181
                            <ol>
182
                            <li><label for="modify_profile_name" class="required">Profile name: </label>
182
                            <li><label for="modify_profile_name" class="required">Profile name: </label>
183
- 

Return to bug 11333