diff options
author | Danny Allen <danny.allen@pennantplc.co.uk> | 2014-09-22 12:05:15 +0100 |
---|---|---|
committer | Danny Allen <danny.allen@pennantplc.co.uk> | 2014-09-22 12:05:15 +0100 |
commit | c4935999f882e7317121e884629d07080f1bc776 (patch) | |
tree | 51c191d48034cf5b6e24b92e914007b1a860247e /coverage/htmlfiles/pyfile.html | |
parent | e38016c499921dd7bf5919a699a76305a1936129 (diff) | |
download | python-coveragepy-git-c4935999f882e7317121e884629d07080f1bc776.tar.gz |
Address comments from pull request 34 (https://bitbucket.org/ned/coveragepy/pull-request/34/rework-of-my-pull-request-18/diff):
* Remove fixed header and header buttons in file details page.
* Add dynamically summing footer values.
Diffstat (limited to 'coverage/htmlfiles/pyfile.html')
-rw-r--r-- | coverage/htmlfiles/pyfile.html | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/coverage/htmlfiles/pyfile.html b/coverage/htmlfiles/pyfile.html index 1ed74871..3a35b02e 100644 --- a/coverage/htmlfiles/pyfile.html +++ b/coverage/htmlfiles/pyfile.html @@ -11,7 +11,6 @@ <link rel='stylesheet' href='{{ extra_css }}' type='text/css'> {% endif %} <script type='text/javascript' src='jquery.min.js'></script> - <script type='text/javascript' src='jquery.debounce.min.js'></script> <script type='text/javascript' src='jquery.hotkeys.js'></script> <script type='text/javascript' src='jquery.isonscreen.js'></script> <script type='text/javascript' src='coverage_html.js'></script> @@ -32,13 +31,8 @@ <h2 class='stats'> {{nums.n_statements}} statements <span class='{{c_run}} shortkey_r button_toggle_run'>{{nums.n_executed}} run</span> - <button id="next_run" title="Go to next run line...">↓</button> - <span class='{{c_mis}} shortkey_m button_toggle_mis'>{{nums.n_missing}} missing</span> - <button id="next_missing" title="Go to next missing line...">↓</button> - <span class='{{c_exc}} shortkey_x button_toggle_exc'>{{nums.n_excluded}} excluded</span> - <button id="next_excluded" title="Go to next excluded line...">↓</button> {% if arcs %} <span class='{{c_par}} shortkey_p button_toggle_par'>{{nums.n_partial_branches}} partial</span> |