From ce738d6b09a959d53ac1d15212efe20b316a14ac Mon Sep 17 00:00:00 2001 From: Hannes Mannerheim Date: Tue, 2 Dec 2014 23:46:12 +0100 Subject: [PATCH] faq corr --- doc/faq.html | 5 ++--- js/qvitter.js | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/faq.html b/doc/faq.html index dd1bd3d..b68f5ff 100644 --- a/doc/faq.html +++ b/doc/faq.html @@ -209,9 +209,8 @@ not only all notices of the Public Timeline but also those of all people on ot

Private Groups

An admin of a group has the option to declare it private. This means:

1) new members must be approved by the admin(s), and

-

2) all notices are forced to be private. That is, notices in the group are only visible to group members (they don't appear in the Public Timeline), and it is not possible for users of other instances to be members of a private group on {instance-name}.

-

notices in the group are only visible to group members (they don't appear in the Public Timeline), and

-

it's not possible for users of other instances to be members of a private group on {instance-name}.

+

2) all notices are forced to be private.
+That is, notices in the group are only visible to group members (they don't appear in the Public Timeline), and it is not possible for users of other instances to be members of a private group on {instance-name}.

diff --git a/js/qvitter.js b/js/qvitter.js index 3619d50..5b1561d 100644 --- a/js/qvitter.js +++ b/js/qvitter.js @@ -398,7 +398,8 @@ $('#logout').click(function(){ $('#faq-link').click(function(){ popUpAction('popup-faq', window.siteTitle + ' ' + window.sL.FAQ,'
',false); - $.get(window.fullUrlToThisQvitterApp + 'doc/faq.html', function(data){ + var timeNow = new Date().getTime(); + $.get(window.fullUrlToThisQvitterApp + 'doc/faq.html?t=' + timeNow, function(data){ if(data) { var faqHtml = data; faqHtml = faqHtml.replace(/{instance-name}/g,window.siteTitle);