| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/c/o/o/coopiak/www/cj79373/components/com_kunena/template/crypsisb3/assets/js/ |
Upload File : |
/**
* Kunena Component
* @package Kunena.Template.Crypsis
*
* @copyright Copyright (C) 2008 - 2022 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
jQuery(document).ready(function ($) {
/* Provide autocomplete user list in search form and in user list */
if ($('#kurl_users').length > 0) {
var users_url = $('#kurl_users').val();
$('#kusersearch').atwho({
at: "",
displayTpl: '<li data-value="${name}"><img src="${photo}" width="20px" /> ${name} <small>(${name})</small></li>',
limit: 5,
callbacks: {
remoteFilter: function (query, callback) {
$.ajax({
url: users_url,
data: {
search: query
}
})
.done(function (data) {
callback(data);
})
.fail(function () {
//TODO: handle the error of ajax request
});
}
}
});
}
/* Hide search form when there are search results found */
if ($('#kunena_search_results').is(':visible')) {
$('#search').collapse("hide");
}
if (jQuery.fn.datepicker !== undefined) {
jQuery('#searchatdate .input-append.date').datepicker({
orientation: "top auto",
language: "kunena"
});
}
});