mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-14 16:59:20 +02:00
Fix for fluoride.js
This commit is contained in:
parent
8c41878b6d
commit
f729e29a8d
|
@ -9,7 +9,6 @@ var reverseActions = {
|
||||||
|
|
||||||
var csrfToken = "";
|
var csrfToken = "";
|
||||||
var antiDopamineMode = false;
|
var antiDopamineMode = false;
|
||||||
var retweetVisibility = "public"
|
|
||||||
|
|
||||||
function checkCSRFToken() {
|
function checkCSRFToken() {
|
||||||
var tag = document.querySelector("meta[name='csrf_token']");
|
var tag = document.querySelector("meta[name='csrf_token']");
|
||||||
|
@ -23,12 +22,6 @@ function checkAntiDopamineMode() {
|
||||||
antiDopamineMode = tag.getAttribute("content") === "true";
|
antiDopamineMode = tag.getAttribute("content") === "true";
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkRetweetVisibility() {
|
|
||||||
var tag = document.querySelector("meta[name='retweet_visibility']");
|
|
||||||
if (tag)
|
|
||||||
retweetVisibility = tag.getAttribute("content");
|
|
||||||
}
|
|
||||||
|
|
||||||
function http(method, url, body, type, success, error) {
|
function http(method, url, body, type, success, error) {
|
||||||
var req = new XMLHttpRequest();
|
var req = new XMLHttpRequest();
|
||||||
req.onload = function() {
|
req.onload = function() {
|
||||||
|
@ -104,6 +97,7 @@ function handleRetweetForm(id, f) {
|
||||||
updateActionForm(id, forms[i], reverseActions[action]);
|
updateActionForm(id, forms[i], reverseActions[action]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var retweetVisibility = document.querySelector('input[id="retweet_visibility-'+id+'"]:checked').value;
|
||||||
var body = "csrf_token=" + encodeURIComponent(csrfToken) + "&retweet_visibility=" + encodeURIComponent(retweetVisibility);
|
var body = "csrf_token=" + encodeURIComponent(csrfToken) + "&retweet_visibility=" + encodeURIComponent(retweetVisibility);
|
||||||
var contentType = "application/x-www-form-urlencoded";
|
var contentType = "application/x-www-form-urlencoded";
|
||||||
http("POST", "/fluoride/" + action + "/" + id,
|
http("POST", "/fluoride/" + action + "/" + id,
|
||||||
|
@ -295,7 +289,6 @@ function onPaste(e) {
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
document.addEventListener("DOMContentLoaded", function() {
|
||||||
checkCSRFToken();
|
checkCSRFToken();
|
||||||
checkAntiDopamineMode();
|
checkAntiDopamineMode();
|
||||||
checkRetweetVisibility();
|
|
||||||
|
|
||||||
var statuses = document.querySelectorAll(".status-container");
|
var statuses = document.querySelectorAll(".status-container");
|
||||||
for (var i = 0; i < statuses.length; i++) {
|
for (var i = 0; i < statuses.length; i++) {
|
||||||
|
|
|
@ -237,11 +237,11 @@
|
||||||
{{if or (eq .Visibility "private") (eq .Visibility "direct")}}
|
{{if or (eq .Visibility "private") (eq .Visibility "direct")}}
|
||||||
Locked
|
Locked
|
||||||
{{else}}
|
{{else}}
|
||||||
<input type="radio" id="retweet_visibility" name="retweet_visibility" value="public" checked>
|
<input type="radio" id="retweet_visibility-{{.ID}}" name="retweet_visibility" value="public" checked>
|
||||||
<label for="retweet_visibility">public</label>
|
<label for="retweet_visibility">public</label>
|
||||||
<input type="radio" id="retweet_visibility" name="retweet_visibility" value="unlisted">
|
<input type="radio" id="retweet_visibility-{{.ID}}" name="retweet_visibility" value="unlisted">
|
||||||
<label for="retweet_visibility">unlisted</label>
|
<label for="retweet_visibility">unlisted</label>
|
||||||
<input type="radio" id="retweet_visibility" name="retweet_visibility" value="private">
|
<input type="radio" id="retweet_visibility-{{.ID}}" name="retweet_visibility" value="private">
|
||||||
<label for="retweet_visibility">private</label>
|
<label for="retweet_visibility">private</label>
|
||||||
{{end}}
|
{{end}}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue