diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-06 22:07:29 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-06 22:07:29 -0500 |
commit | 7ae0b1a079266ba71ee96cf61eb93f934e6f9ec3 (patch) | |
tree | db3caee37ee1e9b5c277b828f8b4794e12571dd8 /coverage/htmlfiles/coverage_html.js | |
parent | 8c78f96e77d7bc4bc27704afb6721c2b55c58451 (diff) | |
download | python-coveragepy-git-7ae0b1a079266ba71ee96cf61eb93f934e6f9ec3.tar.gz |
Also display partial branch lines in the scrollbar markers
Diffstat (limited to 'coverage/htmlfiles/coverage_html.js')
-rw-r--r-- | coverage/htmlfiles/coverage_html.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/htmlfiles/coverage_html.js b/coverage/htmlfiles/coverage_html.js index 8bbf1937..51904ddd 100644 --- a/coverage/htmlfiles/coverage_html.js +++ b/coverage/htmlfiles/coverage_html.js @@ -522,7 +522,7 @@ coverage.init_scroll_markers = function () { c.lines_len = $('td.text p').length; c.body_h = $('body').height(); c.header_h = $('div#header').height(); - c.missed_lines = $('td.text p.mis'); + c.missed_lines = $('td.text p.mis, td.text p.par'); // Build html c.resize_scroll_markers(); |