Edgewall Software

Changes between Initial Version and Version 1 of Ticket #12260, comment 7


Ignore:
Timestamp:
Dec 4, 2015, 12:49:15 AM (8 years ago)
Author:
Jun Omae

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12260, comment 7

    initial v1  
    22{{{
    33$ grep -n '\.attr(.checked' trac/htdocs/js/*.js
    4 trac/htdocs/js/threaded_comments.js:24:    if (commentsOnly.attr('checked')) {
    5 trac/htdocs/js/threaded_comments.js:34:    var commentsOnlyChecked = commentsOnly.attr('checked');
    6 trac/htdocs/js/threaded_comments.js:36:      commentsOnly.attr("checked", false);
    7 trac/htdocs/js/threaded_comments.js:56:      commentsOnly.attr("checked", true);
     4trac/htdocs/js/threaded_comments.js:34:    var showPropertyChangesChecked = showPropertyChanges.attr('checked');
     5trac/htdocs/js/threaded_comments.js:36:      showPropertyChanges.attr("checked", false);
     6trac/htdocs/js/threaded_comments.js:56:      showPropertyChanges.attr("checked", true);
    87trac/htdocs/js/threaded_comments.js:78:    .attr('checked', 'checked');
    9 trac/htdocs/js/threaded_comments.js:90:  commentsOnly.attr('checked', comments_prefs.comments_only != 'false');
    10 trac/htdocs/js/threaded_comments.js:96:      ticket_comments_only: !!commentsOnly.attr('checked'),
     8trac/htdocs/js/threaded_comments.js:90:  showPropertyChanges.attr('checked', comments_prefs.comments_only == 'false');
     9trac/htdocs/js/threaded_comments.js:96:      ticket_comments_only: !showPropertyChanges.attr('checked'),
    1110}}}