%PDF- %PDF- 403WebShell
403Webshell
Server IP : 37.220.80.31  /  Your IP : 18.118.166.94
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux 3051455-guretool.twc1.net 5.15.0-107-generic #117-Ubuntu SMP Fri Apr 26 12:26:49 UTC 2024 x86_64
User : www-root ( 1010)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/www-root/data/www/dev.artlot24.ru/bitrix/js/landing/ui/tool/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/www-root/data/www/dev.artlot24.ru/bitrix/js/landing/ui/tool/suggests.js
;(function() {
	"use strict";

	BX.namespace("BX.Landing.UI.Tool");

	var isEmpty = BX.Landing.Utils.isEmpty;
	var isNumber = BX.Landing.Utils.isNumber;
	var bind = BX.Landing.Utils.bind;
	var unbind = BX.Landing.Utils.unbind;
	var proxy = BX.Landing.Utils.proxy;
	var create = BX.Landing.Utils.create;

	/**
	 * Implements interface for works with suggest popup
	 * @constructor
	 */
	BX.Landing.UI.Tool.Suggest = function()
	{
		this.lastElement = null;
		this.popup = null;
		this.popupTimeout = 0;

		bind(document, "mousedown", proxy(this.hide, this));
	};


	/**
	 * Stores instance
	 * @type {?BX.Landing.UI.Tool.Suggest}
	 */
	BX.Landing.UI.Tool.Suggest.instance = null;


	/**
	 * Gets instance
	 * @return {BX.Landing.UI.Tool.Suggest}
	 */
	BX.Landing.UI.Tool.Suggest.getInstance = function()
	{
		return (
			BX.Landing.UI.Tool.Suggest.instance ||
			(BX.Landing.UI.Tool.Suggest.instance = new BX.Landing.UI.Tool.Suggest())
		);
	};


	BX.Landing.UI.Tool.Suggest.prototype = {
		/**
		 * Creates content layout
		 * @param {object} options
		 * @return {HTMLElement}
		 */
		createContent: function(options)
		{
			var children = [];

			if (!isEmpty(options.name))
			{
				children.push(
					create("div", {
						props: {className: "landing-ui-field-link-media-help-popup-content-title"},
						html: options.name || options.title
					})
				);
			}

			if (!isEmpty(options.description))
			{
				children.push(
					create("div", {
						props: {className: "landing-ui-field-link-media-help-popup-content-content"},
						html: options.description
					})
				);
			}

			return create("div", {
				props: {className: "landing-ui-field-link-media-help-popup-content"},
				children: children
			});
		},


		/**
		 * Shows suggest popup
		 * @param {HTMLElement} element
		 * @param {{[name]: string, [description]: string, angleOffset: int}} options
		 */
		show: function(element, options)
		{
			if (this.popup === null)
			{
				this.popup = new BX.Main.Popup({
					id: "landing_suggests_popup",
					autoHide: false,
					offsetLeft: -20,
					offsetTop: 11,
					angle: {offset: 74}
				});
			}

			if (!isNumber(options.angleOffset))
			{
				options.angleOffset = 74;
			}

			this.popup.setBindElement(element);
			this.popup.setContent(this.createContent(options));
			this.lastElement = element;
			this.popupTimeout = showLater.apply(this);

			function showLater()
			{
				return setTimeout(function() {
					bind(element, "mouseleave", proxy(this.hide, this));
					this.popup.show();
					this.popup.setAngle({offset: options.angleOffset, position: "top"});
				}.bind(this), 200);
			}
		},


		/**
		 * Hides suggest popup
		 */
		hide: function()
		{
			if (this.popup && this.popup.isShown())
			{
				unbind(this.lastElement, "mouseleave", proxy(this.hide, this));
				clearTimeout(this.popupTimeout);
				this.popup.close();
			}
		}
	}
})();

Youez - 2016 - github.com/yon3zu
LinuXploit