mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-14 11:05:41 +05:00
11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
define([
|
|
'/common/common-language.js',
|
|
'less!/customize/src/less2/pages/page-feedback.less',
|
|
], function (Language) {
|
|
Language.applyTranslation();
|
|
var optoutLink = document.querySelector('#optout a');
|
|
if (optoutLink) {
|
|
optoutLink.setAttribute('href', '/settings/');
|
|
}
|
|
});
|