uawdijnntqw1x1x1
IP : 216.73.216.84
Hostname : webm003.cluster107.gra.hosting.ovh.net
Kernel : Linux webm003.cluster107.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
opticamezl
/
www
/
newok
/
07d6c
/
..
/
c9989
/
..
/
c610a
/
.
/
.
/
..
/
media
/
legacy
/
..
/
system
/
js
/
fields
/
tag.js
/
/
/** * @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ /** * Field user */ jQuery(document).ready(function ($) { if (Joomla.getOptions('field-tag-custom')) { var options = Joomla.getOptions('field-tag-custom'), customTagPrefix = '#new#'; // Method to add tags pressing enter $(options.selector + '_chosen input').keyup(function(event) { var tagOption; // Tag is greater than the minimum required chars and enter pressed if (this.value && this.value.length >= options.minTermLength && (event.which === 13 || event.which === 188)) { // Search a highlighted result var highlighted = $(options.selector + '_chosen').find('li.active-result.highlighted').first(); // Add the highlighted option if (event.which === 13 && highlighted.text() !== '') { // Extra check. If we have added a custom tag with this text remove it var customOptionValue = customTagPrefix + highlighted.text(); $(options.selector + ' option').filter(function () { return $(this).val() == customOptionValue; }).remove(); // Select the highlighted result tagOption = $(options.selector + ' option').filter(function () { return $(this).html() == highlighted.text(); }); tagOption.attr('selected', 'selected'); } // Add the custom tag option else { var customTag = this.value; // Extra check. Search if the custom tag already exists (typed faster than AJAX ready) tagOption = $(options.selector + ' option').filter(function () { return $(this).html() == customTag; }); if (tagOption.text() !== '') { tagOption.attr('selected', 'selected'); } else { var option = $('<option>'); option.text(this.value).val(customTagPrefix + this.value); option.attr('selected','selected'); // Append the option and repopulate the chosen field $(options.selector).append(option); } } this.value = ''; $(options.selector).trigger('chosen:updated'); event.preventDefault(); } }); } });
/home/opticamezl/www/newok/07d6c/../c9989/../c610a/././../media/legacy/../system/js/fields/tag.js