| Server IP : 172.67.216.113 / Your IP : 104.23.243.33 [ Web Server : Apache System : Linux cpanel01wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.59.el6.x86_64 #1 SMP Thu Dec 6 05:11:00 EST 2018 x86_64 User : cp648411 ( 1354) PHP Version : 7.2.34 Disable Function : NONE Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/2388321/root/proc/2388322/cwd/unprotected/libraries/cjt2/decorators/ |
Upload File : |
/*
* cjt/decorators/angularChosenDecorator.js Copyright 2022 cPanel, L.L.C.
* All rights reserved.
* [email protected] http://cpanel.net
* This code is subject to the cPanel license. Unauthorized copying is prohibited
*/
/* eslint-env amd */
define(
[
"angular",
"jquery-chosen",
"angular-chosen",
],
function(angular) {
"use strict";
angular
.module("cjt2.decorators.angularChosenDecorator", ["localytics.directives"])
.config(["$provide", function($provide) {
$provide.decorator("chosenDirective", ["$delegate", function($delegate) {
var directive = $delegate[0];
var originalLinkFn = directive.link;
directive.compile = function() {
return function(scope, selectElem) {
originalLinkFn.apply(directive, arguments);
selectElem.on("chosen:ready", function() {
selectElem = selectElem.get(0);
var chosenElem = selectElem.nextElementSibling;
if (!chosenElem || !chosenElem.classList.contains("chosen-container")) {
throw new Error("Developer Error: Chosen has not initialized properly. The .chosen-container element is not next to the select element");
}
var inputElem = chosenElem.querySelector(".chosen-search input");
var labelElem = selectElem.id && document.querySelector("label[for=\"" + selectElem.id + "\"]");
if (inputElem && labelElem && labelElem.id) {
inputElem.setAttribute("aria-labelledby", labelElem.id);
}
});
};
};
return $delegate;
}]);
}]);
}
);