Skip to content
Snippets Groups Projects
Commit 4b43a1e5 authored by David Hrbáč's avatar David Hrbáč
Browse files

Merge branch 'case_insensitive_search' into 'master'

Case-insensitive search

See merge request !109
parents 946d4e0b 8c2419ff
No related branches found
No related tags found
5 merge requests!368Update prace.md to document the change from qprace to qprod as the default...,!367Update prace.md to document the change from qprace to qprod as the default...,!366Update prace.md to document the change from qprace to qprod as the default...,!323extended-acls-storage-section,!109Case-insensitive search
Pipeline #
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.slim.min.js" integrity="sha256-/SIrNqv8h6QGKDuNoLGA4iret+kyesCkHGzVUUV0shc=" crossorigin="anonymous"></script>
<script>
// override to case insensitive search
$.expr[":"].contains = $.expr.createPseudo(function(arg) {
return function( elem ) {
return $(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0;
};
});
$("#searchInput").keyup(function () {
//split the current value of searchInput
var data = this.value.split(" ");
......
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