https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25251

--- Comment #5 from Owen Leonard <[email protected]> ---
Nick what would you think of this:

     $("#batchedit-disabled,#batchdelete-disabled,#deleteallitems-disabled")
         .on("click",function(e){
-            e.preventDefault();
-            alertNoItems();
+            e.stopPropagation();
         })
         .tooltip();

This would remove the alert, but it would also prevent the menu from closing
when the user clicks on a disabled link. This makes sense to me because a user
clicking on a disabled link probably means they're not paying attention. In
that case having nothing happen is better than having something happen (even if
it's just the menu closing).

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to