cryptpad/www/common/feedback-main.js

11 lines
304 B
JavaScript
Raw Normal View History

2017-03-13 11:56:49 +00:00
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/');
}
2017-03-13 11:56:49 +00:00
});