Use standalone ui listener for now
This commit is contained in:
parent
a4e29c124a
commit
7024ef31a0
3 changed files with 7 additions and 5 deletions
|
@ -64,9 +64,9 @@ input:-moz-placeholder, :-moz-placeholder {
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
}
|
}
|
||||||
#reveal-container textarea {
|
#storage-ui-container textarea {
|
||||||
height: 100px;
|
height: 100px;
|
||||||
}
|
}
|
||||||
#reveal-container select {
|
#storage-ui-container select {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
|
@ -6,6 +6,7 @@
|
||||||
<!-- Included CSS Files (Compressed) -->
|
<!-- Included CSS Files (Compressed) -->
|
||||||
<link rel="stylesheet" href="{{ STATIC_URL }}foundation/stylesheets/foundation.css">
|
<link rel="stylesheet" href="{{ STATIC_URL }}foundation/stylesheets/foundation.css">
|
||||||
<link rel="stylesheet" href="{{ STATIC_URL }}youmap/youmap.css">
|
<link rel="stylesheet" href="{{ STATIC_URL }}youmap/youmap.css">
|
||||||
|
<link rel="stylesheet" href="{{ STATIC_URL }}storage/contrib/css/storage.ui.example.css">
|
||||||
|
|
||||||
<script src="{{ STATIC_URL }}foundation/javascripts/modernizr.foundation.js"></script>
|
<script src="{{ STATIC_URL }}foundation/javascripts/modernizr.foundation.js"></script>
|
||||||
|
|
||||||
|
@ -37,10 +38,11 @@
|
||||||
<script src="{{ STATIC_URL }}foundation/javascripts/jquery.foundation.accordion.js"></script>
|
<script src="{{ STATIC_URL }}foundation/javascripts/jquery.foundation.accordion.js"></script>
|
||||||
<script src="{{ STATIC_URL }}foundation/javascripts/jquery.placeholder.js"></script>
|
<script src="{{ STATIC_URL }}foundation/javascripts/jquery.placeholder.js"></script>
|
||||||
<script src="{{ STATIC_URL }}foundation/javascripts/jquery.foundation.alerts.js"></script>
|
<script src="{{ STATIC_URL }}foundation/javascripts/jquery.foundation.alerts.js"></script>
|
||||||
<script src="{{ STATIC_URL }}storage/contrib/js/storage.foundation.js"></script>
|
<script src="{{ STATIC_URL }}storage/contrib/js/storage.ui.example.js"></script>
|
||||||
<script src="{{ STATIC_URL }}endless_pagination/js/endless-pagination.js"></script>
|
<script src="{{ STATIC_URL }}endless_pagination/js/endless-pagination.js"></script>
|
||||||
{% block bottom_js %}
|
{% block bottom_js %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
<div id="reveal-container"></div>
|
<div id="storage-ui-container"></div>
|
||||||
|
<div id="storage-alert-container"></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<h3>Choose your tilelayers</h3>
|
<h3>Choose your tilelayers</h3>
|
||||||
<form action="{% url map_update_tilelayers map.pk %}" method="post" id="map_edit">
|
<form action="{% url map_update_tilelayers map.pk %}" method="post" id="map_edit">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<ul class="block-grid four-up mobile">
|
<ul class="block-grid two-up mobile">
|
||||||
{% for tilelayer in tilelayers %}
|
{% for tilelayer in tilelayers %}
|
||||||
<li>
|
<li>
|
||||||
<label for="tilelayer_{{ forloop.counter }}">
|
<label for="tilelayer_{{ forloop.counter }}">
|
||||||
|
|
Loading…
Reference in a new issue