Skip to content

Commit 1e33b3e

Browse files
authored
Merge pull request #78 from eth-cscs/jhub-js-components
Fix wrong stop behavior introduced with new image
2 parents 570e1c7 + 1395a5b commit 1e33b3e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

dockerfiles/cscs-style-jh4/templates/page.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h1 class="modal-title" id="{{key}}-label">{{title}}</h1>
3333
<link rel="stylesheet" href="{{ static_url("css/cscs/app.css" ) }}" type="text/css"/>
3434
<link rel="stylesheet" href="{{ static_url("components/select2.min.css") }}">
3535
<link rel="stylesheet" href="{{ static_url("components/bootstrap-touchspin-master/dist/jquery.bootstrap-touchspin.min.css") }}">
36-
<link rel="stylesheet" href="{{ static_url("components/icheck-2/skins/square/grey.css") }}">
36+
<!--<link rel="stylesheet" href="{{ static_url("components/icheck-2/skins/square/grey.css") }}">--!>
3737
<link rel="stylesheet" href="{{ static_url("css/cscs/app.css") }}" type="text/css"/>
3838
{% endblock %}
3939
{% block favicon %}
@@ -54,7 +54,7 @@ <h1 class="modal-title" id="{{key}}-label">{{title}}</h1>
5454
components: '../components',
5555
jquery: '../components/jquery.min',
5656
bootstrap: '../components/bootstrap.min',
57-
moment: '../components/moment',
57+
moment: '../components/moment.min',
5858
select2: '../components/select2.min',
5959
icheck: '../components/icheck-2/icheck.min',
6060
touchspin: '../components/bootstrap-touchspin-master/dist/jquery.bootstrap-touchspin.min'

dockerfiles/cscs-style-jh4/templates/page.login.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&amp;subset=all" rel="stylesheet" type="text/css" />
1818
<!-- CSS -->
1919
{% block stylesheet %}
20-
<link rel="stylesheet" href="{{static_url("css/cscs/vendor/font-awesome.min.css")}}">
20+
<!--<link rel="stylesheet" href="{{static_url("css/cscs/vendor/font-awesome.min.css")}}">--!>
2121
<link rel="stylesheet" href="{{static_url("css/cscs/login.css")}}" type="text/css"/>
2222
{% endblock %}
2323
<!-- JS -->
24-
<script src="{{static_url("components/requirejs/require.js") }}" type="text/javascript" charset="utf-8"></script>
25-
<script src="{{static_url("components/jquery/dist/jquery.min.js") }}" type="text/javascript" charset="utf-8"></script>
26-
<script src="{{static_url("components/bootstrap/dist/js/bootstrap.min.js") }}" type="text/javascript" charset="utf-8"></script>
24+
<script src="{{static_url("components/require.min.js") }}" type="text/javascript" charset="utf-8"></script>
25+
<script src="{{static_url("components/jquery.min.js") }}" type="text/javascript" charset="utf-8"></script>
26+
<script src="{{static_url("components/bootstrap.min.js") }}" type="text/javascript" charset="utf-8"></script>
2727
<script>
2828
require.config({
2929
{% if version_hash %}
@@ -32,9 +32,9 @@
3232
baseUrl: '{{static_url("js", include_version=False)}}',
3333
paths: {
3434
components: '../components',
35-
jquery: '../components/jquery/dist/jquery.min',
36-
bootstrap: '../components/bootstrap/dist/js/bootstrap.min',
37-
moment: "../components/moment/moment",
35+
jquery: '../components/jquery.min',
36+
bootstrap: '../components/bootstrap.min',
37+
moment: "../components/moment.min",
3838
},
3939
shim: {
4040
bootstrap: {
@@ -115,4 +115,4 @@
115115
</footer>
116116
</div>
117117
</body>
118-
</html>
118+
</html>

0 commit comments

Comments
 (0)