separate skips for my_followers and someone_followers modal warnings

This commit is contained in:
Simon Grim 2016-09-11 19:42:36 +05:00
parent d971fb7a51
commit 6387f4c037
2 changed files with 15 additions and 7 deletions

View File

@ -599,7 +599,7 @@ function openMentionsModalHandler(peerAlias) {
}
function openFollowersModal(peerAlias) {
var followers, title, txtAlert;
var followers, title, warn;
if (!peerAlias || peerAlias === defaultScreenName) {
if (!defaultScreenName) {
@ -612,21 +612,24 @@ function openFollowersModal(peerAlias) {
}
title = polyglot.t('Followers');
followers = twisterFollowingO.knownFollowers.slice();
txtAlert = '* ' + polyglot.t('warn_followers_not_all');
warn = {
name: 'FollowersNotAll',
text: '* ' + polyglot.t('warn_followers_not_all')
};
} else {
title = polyglot.t('Followers_of', {alias: peerAlias});
followers = whoFollows(peerAlias);
txtAlert = polyglot.t('warn_followers_not_all_of', {alias: peerAlias});
warn = {
name: 'FollowersNotAllOf',
text: polyglot.t('warn_followers_not_all_of', {alias: peerAlias})
};
}
var modal = openModal({
classAdd: 'followers-modal',
content: twister.tmpl.followersList.clone(true),
title: title,
warn: {
name: 'FollowersNotAll',
text: txtAlert
}
warn: warn
});
appendFollowersToElem(modal.content.find('ol'), followers);

View File

@ -314,6 +314,11 @@ function twisterOptions() {
type: 'checkbox',
valDefault: false
});
this.add({
name: 'skipWarnFollowersNotAllOf',
type: 'checkbox',
valDefault: false
});
}
twisterOptions.prototype.add = function (option) {