Fixed #31013 -- Removed jQuery usage in SelectBox.js.

This commit is contained in:
Johannes Hoppe 2019-11-25 19:35:20 +07:00 committed by Mariusz Felisiak
parent 0290e01d5a
commit ef93fd4683
1 changed files with 4 additions and 7 deletions

View File

@ -1,4 +1,4 @@
(function($) {
(function() {
'use strict';
var SelectBox = {
cache: {},
@ -18,8 +18,7 @@
// Repopulate HTML select box from cache
var box = document.getElementById(id);
var node;
$(box).empty(); // clear all options
var new_options = box.outerHTML.slice(0, -9); // grab just the opening tag
box.innerHTML = '';
var cache = SelectBox.cache[id];
for (var i = 0, j = cache.length; i < j; i++) {
node = cache[i];
@ -27,11 +26,9 @@
var new_option = new Option(node.text, node.value, false, false);
// Shows a tooltip when hovering over the option
new_option.setAttribute("title", node.text);
new_options += new_option.outerHTML;
box.appendChild(new_option);
}
}
new_options += '</select>';
box.outerHTML = new_options;
},
filter: function(id, text) {
// Redisplay the HTML select box, displaying only the choices containing ALL
@ -141,4 +138,4 @@
}
};
window.SelectBox = SelectBox;
})(django.jQuery);
})();