mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Update static dependencies
This commit is contained in:
@ -0,0 +1,29 @@
|
||||
((function(){
|
||||
var findAncestor = function(el, selector) {
|
||||
while ((el = el.parentElement) && !((el.matches || el.matchesSelector).call(el, selector))) {}
|
||||
return el;
|
||||
};
|
||||
|
||||
var fields = document.querySelectorAll('input[name="searchfield"][data-search-input]');
|
||||
fields.forEach(function(field) {
|
||||
var form = findAncestor(field, 'form[data-simplesearch-form]'),
|
||||
min = field.getAttribute('min') || false,
|
||||
location = field.getAttribute('data-search-input'),
|
||||
separator = field.getAttribute('data-search-separator');
|
||||
|
||||
if (min) {
|
||||
var invalid = field.getAttribute('data-search-invalid');
|
||||
field.addEventListener('keydown', function() {
|
||||
field.setCustomValidity(field.value.length >= min ? '' : invalid);
|
||||
});
|
||||
}
|
||||
|
||||
form.addEventListener('submit', function(event) {
|
||||
event.preventDefault();
|
||||
|
||||
if (field.checkValidity()) {
|
||||
window.location.href = location + separator + field.value;
|
||||
}
|
||||
});
|
||||
});
|
||||
})());
|
Reference in New Issue
Block a user