File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
src/CodeCoverage/Report/HTML/Renderer/Template Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 6464 <script src="{{path_to_root}}js/bootstrap.min.js" type="text/javascript"></script>
6565 <script src="{{path_to_root}}js/holder.js" type="text/javascript"></script>
6666 <script type="text/javascript">
67- $(function() {{
67+ $(function() {
6868 var $window = $(window)
6969 , $top_link = $('#toplink')
7070 , $body = $('body, html')
7171 , offset = $('#code').offset().top;
7272
73- $top_link.hide().click(function(event) {{
73+ $top_link.hide().click(function(event) {
7474 event.preventDefault();
75- $body.animate({{ scrollTop:0} }, 800);
76- }} );
75+ $body.animate({scrollTop:0}, 800);
76+ });
7777
78- $window.scroll(function() {{
79- if($window.scrollTop() > offset) {{
78+ $window.scroll(function() {
79+ if($window.scrollTop() > offset) {
8080 $top_link.fadeIn();
81- }} else { {
81+ } else {
8282 $top_link.fadeOut();
83- }}
84- }} ).scroll();
83+ }
84+ }).scroll();
8585
8686 $('.popin').popover({trigger: 'hover'});
87- }} );
87+ });
8888 </script>
8989 </body>
9090</html>
You can’t perform that action at this time.
0 commit comments