2018-04-10 02:38:18 -04:00
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
$('.form-inline').submit(function(e) {
|
|
|
|
|
if ($('#client_search').val().length < 3) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
$('#client_search')
|
|
|
|
|
.addClass('input-text-danger')
|
|
|
|
|
.delay(25)
|
2020-05-22 21:29:41 -04:00
|
|
|
|
.queue(function () {
|
2018-04-10 02:38:18 -04:00
|
|
|
|
$(this).addClass('input-border-transition').dequeue();
|
|
|
|
|
})
|
|
|
|
|
.delay(1000)
|
2020-05-22 21:29:41 -04:00
|
|
|
|
.queue(function () {
|
2018-04-10 02:38:18 -04:00
|
|
|
|
$(this).removeClass('input-text-danger').dequeue();
|
|
|
|
|
})
|
|
|
|
|
.delay(500)
|
2020-05-22 21:29:41 -04:00
|
|
|
|
.queue(function () {
|
2018-04-10 02:38:18 -04:00
|
|
|
|
$(this).removeClass('input-border-transition').dequeue();
|
|
|
|
|
});
|
2020-05-22 21:29:41 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if ($('#client_search').val().startsWith("chat|")) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
window.location = "/Message/Find?query=" + $('#client_search').val();
|
2018-04-10 02:38:18 -04:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|