https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34857
Andreas Jonsson <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #9 from Andreas Jonsson <[email protected]> --- I happened to notice the following difference: Firefox: >> $('.form-control').get(0).disabled <- true Chrome: >> $('.form-control').get(0).disabled <- false If you run >> $('.form-control').get(0).disabled = true in the console in chrome the search will work. It looks like this is a hidden <select> which is used for copying the operator dropdown menu when adding additional search clauses. It should be disabled. The difference between browser is probably in execution order. So, a fix is to change the code from bug 33233 to: window.addEventListener('pageshow', function( e ){ $('.form-control:visible').prop('disabled' , false ); }); -- 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/
