diff options
-rw-r--r-- | CHANGES.txt | 2 | ||||
-rw-r--r-- | coverage/html.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index dc95c3f9..a3a739ae 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,7 +6,7 @@ Change history for Coverage.py Version 3.5 ----------- -- The HTML report now has hotkeys. Try ``n``, ``s``, ``m``, ``x``, ``b``, +- The HTML report now has hotkeys. Try ``n``, ``s``, ``m``, ``x``, ``b``, ``p``, and ``c`` on the overview page to change the column sorting. On a file page, ``r``, ``m``, ``x``, and ``p`` toggle the run, missing, excluded, and partial line markings. diff --git a/coverage/html.py b/coverage/html.py index c2a2443e..76e28907 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -26,8 +26,8 @@ class HtmlReporter(Reporter): # These files will be copied from the htmlfiles dir to the output dir. STATIC_FILES = [ - "style.css", - "jquery-1.4.3.min.js", + "style.css", + "jquery-1.4.3.min.js", "jquery.tablesorter.min.js", "jquery.hotkeys.js", "coverage_html.js", |