| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/piwik/plugins/CoreHome/angularjs/common/directives/ |
Upload File : |
/*!
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
/**
* If the given text or resolved expression matches any text within the element, the matching text will be wrapped
* with a class.
*
* Example:
* <div piwik-autocomplete-matched="'text'">My text</div> ==> <div>My <span class="autocompleteMatched">text</span></div>
*
* <div piwik-autocomplete-matched="searchTerm">{{ name }}</div>
* <input type="text" ng-model="searchTerm">
*/
(function () {
angular.module('piwikApp.directive').directive('piwikAttributes', piwikAttributes);
piwikAttributes.$inject = ['$sanitize'];
function piwikAttributes(piwik, $sanitize) {
return {
link: function (scope, element, attrs) {
if (!attrs.piwikAttributes || !angular.isString(attrs.piwikAttributes)) {
return;
}
function applyAttributes(attributes)
{
if (angular.isObject(attributes)) {
angular.forEach(attributes, function (value, key) {
if (angular.isObject(value)) {
value = JSON.stringify(value);
}
// replace line breaks in placeholder with big amount of spaces for safari,
// as line breaks are not support there
if (key === 'placeholder' && /^((?!chrome|android).)*safari/i.test(navigator.userAgent)) {
value = value.replace(/(?:\r\n|\r|\n)/g, (new Array(200)).join(' '));
}
if (key === 'disabled') {
element.prop(key, value);
} else {
element.attr(key, value);
}
});
}
}
applyAttributes(JSON.parse(attrs.piwikAttributes));
attrs.$observe('piwikAttributes', function (newVal) {
applyAttributes(JSON.parse(newVal));
});
}
};
}
})();