[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 14:57:12 CEST 2016


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

Owen Leonard <oleonard at myacpl.org> changed:

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

--- Comment #21 from Owen Leonard <oleonard at myacpl.org> ---
Created attachment 50580
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=50580&action=edit
[SIGNED-OFF] 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>
Signed-off-by: Owen Leonard <oleonard at myacpl.org>

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


More information about the Koha-bugs mailing list