[Koha-bugs] [Bug 16238] Upgrade jQuery in staff client: use .prop() instead of .attr()

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Apr 22 09:15:31 CEST 2016


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

Julian Maurice <julian.maurice at biblibre.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #50193|0                           |1
        is obsolete|                            |

--- Comment #16 from Julian Maurice <julian.maurice at biblibre.com> ---
Created attachment 50565
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=50565&action=edit
Bug 16238: Use .prop() instead of .attr() for 'checked'

According to https://jquery.com/upgrade-guide/1.9/#attr-versus-prop-
.attr() is no longer correct to access the checked state of a checkbox.

This patch do the following replacements:
  .attr('checked')               =>  .prop('checked')
  .attr('checked, '')            =>  .prop('checked', false)
  .attr('checked, 'checked')     =>  .prop('checked', true)
  .attr('checked', boolValue)    =>  .prop('checked', boolValue)
  .removeAttr('checked')         =>  .prop('checked', false)
  .attr('checked') == 'checked'  =>  .is(':checked')

Signed-off-by: Marc Véron <veron at veron.ch>

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list