Add bootbox dependency.

This commit is contained in:
Alexis Lahouze 2015-08-19 15:50:08 +02:00
parent f602109c53
commit a23cb97721
1 changed files with 7 additions and 3 deletions

View File

@ -23,12 +23,19 @@
<base href="{{ url_for('frontend.index') }}">
<!-- JQuery -->
<script type="text/javascript" src="{{ url_for('bower.static', filename='jquery/dist/jquery.js') }}"></script>
<!-- Bootstrap -->
<link href="{{ url_for('bower.static', filename='bootstrap/dist/css/bootstrap.css') }}" rel="stylesheet">
<script type="text/javascript" src="{{ url_for('bower.static', filename='bootstrap/dist/js/bootstrap.js') }}"></script>
<!-- Bootstrap Additions -->
<link href="{{ url_for('bower.static', filename='bootstrap-additions/dist/bootstrap-additions.css') }}" rel="stylesheet">
<!-- Bootbox.js -->
<script type="text/javascript" src="{{ url_for('bower.static', filename='bootbox/bootbox.js') }}"></script>
<!-- Font Awesome -->
<link href="{{ url_for('bower.static', filename='font-awesome/css/font-awesome.css') }}" rel="stylesheet">
@ -37,9 +44,6 @@
<link href="{{ ASSET_URL }}" rel="stylesheet">
{% endassets %}
<!-- JQuery -->
<script type="text/javascript" src="{{ url_for('bower.static', filename='jquery/dist/jquery.js') }}"></script>
<!-- Moment.js -->
<script type="text/javascript" src="{{ url_for('bower.static', filename='moment/min/moment-with-locales.js') }}"></script>