Skip to content
Snippets Groups Projects
Verified Commit 4b9ac693 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Finish import of sortablejs

parent fd920750
No related branches found
No related tags found
1 merge request!411Ordering of dashboard widgets
......@@ -353,6 +353,7 @@ YARN_INSTALLED_APPS = [
"select2-materialize",
"paper-css",
"jquery-sortablejs",
"sortablejs",
]
merge_app_settings("YARN_INSTALLED_APPS", YARN_INSTALLED_APPS, True)
......@@ -376,7 +377,8 @@ ANY_JS = {
"css_url": JS_URL + "/select2-materialize/select2-materialize.css",
"js_url": JS_URL + "/select2-materialize/index.js",
},
"sortablejs": {"js_url": JS_URL + "/jquery-sortablejs/jquery-sortable.js"},
"sortablejs": {"js_url": JS_URL + "/sortablejs/dist/sortable.umd.js"},
"jquery-sortablejs": {"js_url": JS_URL + "/jquery-sortablejs/jquery-sortable.js"},
}
merge_app_settings("ANY_JS", ANY_JS, True)
......
......@@ -170,6 +170,8 @@
{% include_js "materialize" %}
{% include_js "sortablejs" %}
{% include_js "jquery-sortablejs" %}
<script type="text/javascript" src="{% static 'js/search.js' %}"></script>
<script type="text/javascript" src="{% static 'js/main.js' %}"></script>
</body>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment