Bug 16437 - (follow-up) Automatic item modifications by age needs prettying
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 20 May 2016 14:40:24 +0000 (15:40 +0100)
committerBrendan Gallagher <brendan@bywatersolutions.com>
Tue, 31 May 2016 11:57:12 +0000 (11:57 +0000)
Do not move the scrollbar to the top when removing a 'block' to a new
rule.

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com>

koha-tmpl/intranet-tmpl/prog/js/automatic_item_modification_by_age.js

index 1ebce82..d14b55a 100644 (file)
@@ -36,7 +36,8 @@ function clone_block(block) {
     $(new_block).find('a.remove_block').show();
     var blocks = $(block).parent();
     $(blocks).append(new_block);
-    $(blocks).find('a.remove_block').click(function(){
+    $(blocks).find('a.remove_block').click(function(e){
+        e.preventDefault();
         remove_block_action($(this));
     }).show();
 }
@@ -91,7 +92,8 @@ $(document).ready(function() {
         if( $("#rules").find(".conditions > .condition").length > 1 ) {
 
         }
-        new_rule.find('.remove_rule').click(function(){
+        new_rule.find('.remove_rule').click(function(e){
+            e.preventDefault();
             remove_rule_action( $(this) );
         }).show();
         new_rule.find('.add_rule').remove();