uawdijnntqw1x1x1
IP : 216.73.216.168
Hostname : server.fattispazio.it
Kernel : Linux server.fattispazio.it 3.10.0-1160.144.1.el7.tuxcare.els4.x86_64 #1 SMP Tue Apr 7 08:40:40 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
poliximo
/
public_html
/
4690b
/
..
/
media
/
com_modules
/
..
/
system
/
js
/
caption-uncompressed.js
/
/
/** * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ /** * JCaption javascript behavior * * Used for displaying image captions * * @package Joomla * @since 1.5 * @version 1.0 */ var JCaption = function(_selector) { var $, selector, initialize = function(_selector) { $ = jQuery.noConflict(); selector = _selector; $(selector).each(function(index, el) { createCaption(el); }) }, createCaption = function(element) { var $el = $(element), caption = $el.attr('title'), width = $el.attr("width") || element.width, align = $el.attr("align") || $el.css("float") || element.style.styleFloat || "none", $p = $('<p/>', { "text" : caption, "class" : selector.replace('.', '_') }), $container = $('<div/>', { "class" : selector.replace('.', '_') + " " + align, "css" : { "float" : align, "width" : width } }); $el.before($container); $container.append($el); if (caption !== "") { $container.append($p); } } initialize(_selector); }
/home/poliximo/public_html/4690b/../media/com_modules/../system/js/caption-uncompressed.js