summaryrefslogtreecommitdiff
path: root/ishtar_common/static/ajax_select/js/bootstrap.js
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2021-09-09 11:07:01 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2022-12-12 12:20:58 +0100
commit3297cdadc31ea857ed51317081d7d3174af7dbc9 (patch)
tree206966ec7684d85811f7a8686fd781d3ab9d9fd4 /ishtar_common/static/ajax_select/js/bootstrap.js
parent07e3e2e9c3da9f05634a45f65723504c229f2baa (diff)
downloadIshtar-3297cdadc31ea857ed51317081d7d3174af7dbc9.tar.bz2
Ishtar-3297cdadc31ea857ed51317081d7d3174af7dbc9.zip
Migration to Django 2.2 - fixes
- remove django-ajax-select - fix migrations
Diffstat (limited to 'ishtar_common/static/ajax_select/js/bootstrap.js')
-rw-r--r--ishtar_common/static/ajax_select/js/bootstrap.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/ishtar_common/static/ajax_select/js/bootstrap.js b/ishtar_common/static/ajax_select/js/bootstrap.js
deleted file mode 100644
index cb742eaa9..000000000
--- a/ishtar_common/static/ajax_select/js/bootstrap.js
+++ /dev/null
@@ -1,30 +0,0 @@
-(function(w) {
- /**
- * load jquery and jquery-ui if needed
- */
-
- function not(thing) {
- return typeof thing === 'undefined';
- }
-
- function loadJS(src) {
- document.write('<script type="text/javascript" src="' + src + '"><\/script>');
- }
-
- function loadCSS(href) {
- var script = document.createElement('link');
- script.href = href;
- script.type = 'text/css';
- script.rel = 'stylesheet';
- document.head.appendChild(script);
- }
-
- if (not(w.jQuery)) {
- loadJS('//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js');
- }
-
- if (not(w.jQuery) || not(w.jQuery.ui) || not(w.jQuery.ui.autocomplete)) {
- loadJS('//code.jquery.com/ui/1.10.3/jquery-ui.js');
- loadCSS('//code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css');
- }
-})(window);