HEX
Server: Apache
System: Linux vps-cdc32557.vps.ovh.ca 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
User: hanode (1017)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/hanode/public_html/wp-content/sitepress-multilingual-cms/res/js/tooltip/tooltip.js
(function () {
	'use strict';

	var WPML_Tooltip = function( element ) {
		this.trigger = element;
		this.content = this.trigger.html(this.trigger.html()).text();
		this.edge = 'bottom';
		this.align = 'left';
		this.margin_left = '-54px';

		if ( !this.content ) {
			this.content = this.decodeEntities(this.trigger.data('content'));
		}

		if ( this.trigger.data( 'edge' ) ) {
			this.edge = this.trigger.data( 'edge' );
		}

		if ( this.trigger.data( 'align' ) ) {
			this.align = this.trigger.data( 'align' );
		}

		if ( this.trigger.data( 'margin_left' ) ) {
			this.margin_left = this.trigger.data( 'margin_left' );
		}

		this.trigger.empty();
		this.trigger.click( jQuery.proxy( this.onTriggerClick,this ) );
	};

	WPML_Tooltip.prototype = {
		open: function () {
			if (this.trigger.length && this.content) {
				this.trigger.addClass('js-wpml-active-tooltip');
				this.trigger.pointer({
					pointerClass: 'js-wpml-tooltip',
					content: this.content,
					position:     {
						edge:  this.edge,
						align: this.align
					},
					show: jQuery.proxy( this.onShow, this ),
					close: this.onClose,
					buttons: this.buttons

				}).pointer('open');
			}
		},
		onShow: function(event, t) {
			t.pointer.css('marginLeft', this.margin_left);
		},
		onClose: function (event, t) {
			t.pointer.css('marginLeft', '0');
		},
		onTriggerClick: function(e) {
			e.preventDefault();
			this.open();
		},
		buttons: function (event, t) {
			var button = jQuery('<a class="close" href="#">&nbsp;</a>');

			return button.bind('click.pointer', function (e) {
				e.preventDefault();
				t.element.pointer('close');
			});
		},
		decodeEntities: function(encodedString)	{
			var textArea = document.createElement('textarea');
			textArea.innerHTML = encodedString;
			return textArea.value;
		}
	};

	jQuery(document).ready(function () {
		var tooltips = jQuery('.js-wpml-tooltip-open'),
			tooltip = {};

		tooltips.each(function (index, element) {
			tooltip = new WPML_Tooltip(jQuery(element));
		});
	});
}());