| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.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 : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/blog/components/com_kunena/template/crypsis/assets/js/ |
Upload File : |
/**
* Kunena Component
* @package Kunena.Template.Crypsis
*
* @copyright (C) 2008 - 2018 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
},
success: function(data) {
callback(data);
}
});
}
}
});
}
/* 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"
});
}
});