Show More
@@ -190,7 +190,7 b' let' | |||
|
190 | 190 | postInstall = '' |
|
191 | 191 | # check required files |
|
192 | 192 | STATIC_CHECK="/robots.txt /502.html |
|
193 | /js/scripts.js /js/rhodecode-components.js | |
|
193 | /js/scripts.min.js /js/rhodecode-components.js | |
|
194 | 194 | /css/style.css /css/style-polymer.css /css/style-ipython.css" |
|
195 | 195 | |
|
196 | 196 | for file in $STATIC_CHECK; |
@@ -62,7 +62,7 b' class TestHomeController(TestController)' | |||
|
62 | 62 | rhodecode_version_hash = calculate_version_hash( |
|
63 | 63 | {'beaker.session.secret': 'test-rc-uytcxaz'}) |
|
64 | 64 | response.mustcontain('style.css?ver={0}'.format(rhodecode_version_hash)) |
|
65 | response.mustcontain('scripts.js?ver={0}'.format(rhodecode_version_hash)) | |
|
65 | response.mustcontain('scripts.min.js?ver={0}'.format(rhodecode_version_hash)) | |
|
66 | 66 | |
|
67 | 67 | def test_index_contains_backend_specific_details(self, backend): |
|
68 | 68 | self.log_user() |
@@ -21,7 +21,7 b'' | |||
|
21 | 21 | // register templateContext to pass template variables to JS |
|
22 | 22 | var templateContext = {timeago: {}}; |
|
23 | 23 | </script> |
|
24 | <script type="text/javascript" src="${h.asset('js/scripts.js', ver=c.rhodecode_version_hash)}"></script> | |
|
24 | <script type="text/javascript" src="${h.asset('js/scripts.min.js', ver=c.rhodecode_version_hash)}"></script> | |
|
25 | 25 | </head> |
|
26 | 26 | <body> |
|
27 | 27 |
General Comments 0
You need to be logged in to leave comments.
Login now