Fix for Bug 4416, renew all and return all buttons too close together
This patch removes the "return all" button altogether. Returning all items is a step which one wouldn't take lightly or even regularly. Since the interface has a means of selecting all checkboxes in the "Check in" column, removing the "Return all" button wouldn't eliminate the means of doing so, it would just require more deliberation. Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
This commit is contained in:
parent
7b11d2a281
commit
37e9cbc042
2 changed files with 0 additions and 7 deletions
|
@ -47,10 +47,6 @@ var allcheckboxes = $(".checkboxed");
|
|||
$(allcheckboxes).checkCheckboxes(":input[name*=items]");
|
||||
$(allcheckboxes).unCheckCheckboxes(":input[name*=barcodes]");
|
||||
});
|
||||
$("#return_all").click(function(){
|
||||
$(allcheckboxes).checkCheckboxes(":input[name*=barcodes]");
|
||||
$(allcheckboxes).unCheckCheckboxes(":input[name*=items]");
|
||||
});
|
||||
$("#CheckAllitems").click(function(){
|
||||
$(allcheckboxes).checkCheckboxes(":input[name*=items]");
|
||||
$(allcheckboxes).unCheckCheckboxes(":input[name*=barcodes]"); return false;
|
||||
|
@ -813,7 +809,6 @@ No patron matched <span class="ex"><!-- TMPL_VAR name="message" --></span>
|
|||
<!-- /TMPL_IF -->
|
||||
<input type="submit" name="renew_checked" value="Renew or Return checked items" />
|
||||
<input type="submit" id="renew_all" name="renew_all" value="Renew all" />
|
||||
<input type="submit" id="return_all" name="return_all" value="Return all" />
|
||||
</fieldset>
|
||||
<!-- /TMPL_IF -->
|
||||
</form>
|
||||
|
|
|
@ -37,7 +37,6 @@ $(document).ready(function() {
|
|||
return confirm(_('Are you sure you want to replace the current patron image? This cannot be undone.'));
|
||||
});<!-- /TMPL_IF -->
|
||||
$("#renew_all" ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]" ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); });
|
||||
$("#return_all" ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=barcodes]"); $(".checkboxed").unCheckCheckboxes(":input[name*=items]" ); });
|
||||
$("#CheckAllitems" ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]" ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); return false; });
|
||||
$("#CheckNoitems" ).click(function(){ $(".checkboxed").unCheckCheckboxes(":input[name*=items]"); return false; });
|
||||
$("#CheckAllreturns").click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=barcodes]"); $(".checkboxed").unCheckCheckboxes(":input[name*=items]"); return false; });
|
||||
|
@ -505,7 +504,6 @@ if (nodename =="barcodes[]"){
|
|||
<!-- /TMPL_IF -->
|
||||
<input type="submit" name="renew_checked" value="Renew or Return checked items" />
|
||||
<input type="submit" id="renew_all" name="renew_all" value="Renew all" />
|
||||
<input type="submit" id="return_all" name="return_all" value="Return all" />
|
||||
</fieldset>
|
||||
</form><!-- TMPL_ELSE --><p>Patron has nothing checked out.</p><!-- /TMPL_IF -->
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue