Koha/koha-tmpl/intranet-tmpl/prog/en/modules/reports
Julian Maurice 27770b7c8f 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@veron.ch>
Signed-off-by: Owen Leonard <oleonard@myacpl.org>

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

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
2016-04-29 14:18:24 +00:00
..
csv Bug 11371 - Add a new report : Orders by fund with more options 2016-04-29 12:20:25 +00:00
acquisitions_stats.tt Bug 15413: Adding colons where appropriate 2016-03-25 21:50:56 +00:00
bor_issues_top.tt Bug 14100: (follow-up) Language overlay for item types 2015-10-27 12:34:06 -03:00
borrowers_out.tt Bug 15413: Adding colons where appropriate 2016-03-25 21:50:56 +00:00
borrowers_stats.tt Bug 15413: Adding colons where appropriate 2016-03-25 21:50:56 +00:00
cat_issues_top.tt Bug 15413: Adding colons where appropriate 2016-03-25 21:50:56 +00:00
catalogue_out.tt Bug 15927 - Remove use of <tr class="highlight"> for alternating row colors 2016-03-02 22:07:13 +00:00
catalogue_stats.tt Bug 16238: Use .prop() instead of .attr() for 'checked' 2016-04-29 14:18:24 +00:00
dictionary.tt Bug 15863: Show/hide date range selection if not needed - dictionnary 2016-04-29 13:35:52 +00:00
guided_reports_start.tt Bug 16238: Use .prop() instead of .attr() for 'checked' 2016-04-29 14:18:24 +00:00
issues_avg_stats.tt Bug 14100: (follow-up) Language overlay for item types 2015-10-27 12:34:06 -03:00
issues_by_borrower_category.tt
issues_stats.tt Bug 15413: Adding colons where appropriate 2016-03-25 21:50:56 +00:00
itemslost.tt Bug 16241 - Move staff client CSS out of language directory 2016-04-29 13:54:37 +00:00
itemtypes.tt Bug 16241 - Move staff client CSS out of language directory 2016-04-29 13:54:37 +00:00
orders_by_budget.tt Bug 11371 - Add a new report : Orders by fund with more options 2016-04-29 12:20:25 +00:00
reports-home.tt Bug 11371 - Add a new report : Orders by fund with more options 2016-04-29 12:20:25 +00:00
reserves_stats.tt Bug 15413: Adding colons where appropriate 2016-03-25 21:50:56 +00:00
serials_stats.tt Bug 16241 - Move staff client CSS out of language directory 2016-04-29 13:54:37 +00:00
stats_screen.tt