[automated] update groups.io wiki

This commit is contained in:
github-actions
2024-10-23 00:35:35 +00:00
parent a9bb7e8952
commit f140acb25a
155 changed files with 42259 additions and 21322 deletions
+29 -4
View File
@@ -102,7 +102,7 @@
console.log("stack:", errorObj.stack);
stack = errorObj.stack;
}
console.log("client_id:", "web.web08.2350780.1729038950725780225");
console.log("client_id:", "web.web09.2339921.1729643728323846593");
console.log("last_error:", lastError);
console.log("stack:", stack);
}
@@ -127,7 +127,7 @@
column: column,
stack: stack,
last_error: lastError,
client_id: "web.web08.2350780.1729038950725780225"
client_id: "web.web09.2339921.1729643728323846593"
},
success: function() {
if (console && console.log) {
@@ -150,7 +150,7 @@
<script src="../../../../tinymce-5.10.9/tinymce.min.js"></script>
<script src="../../../../js/browser-image-compression-2.0.2.min.js"></script>
<link href="../../../../css/application-0fd38d82e65eed26de5d465243c7f774.css" rel="stylesheet" id="groupsio-css">
<link href="../../../../css/application-111b8509e66f2fa6aded8e6a2590a467.css" rel="stylesheet" id="groupsio-css">
<script src="../../../../js/application-9b2c27b802a13063cf8a712fe566f004.js" id="groupsio-js"></script>
<script src="../../../../js/run_prettify.js"></script>
<title>
@@ -176,7 +176,7 @@
console.log("FULL PAGE LOAD");
</script>
</head>
<body id="body" class="" hx-headers='{"Accept-Version": "b77ab25331fe9739a2c14e17414e61d86c88d088"}' hx-ext="preload" hx-boost="false">
<body id="body" class="" hx-headers='{"Accept-Version": "6de56da9b5f3d31d0e6f097a2f35fc04da2568af"}' hx-ext="preload" hx-boost="false">
<script>
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
@@ -496,6 +496,31 @@ function showAutocompleteModal(modalName) {
location.reload();
});
function ShowBackButton(label) {
var logoElement = document.getElementById("logo");
if (logoElement) {
logoElement.innerHTML = `
<span style="color:#fff;margin-top:14px;margin-left:12px;float:left !important">
<a onclick="goBack()" style="color:#fff">
<i class="fa-fw fa-solid fa-chevron-left fa-lg"></i>
</a>&nbsp;` + label + "</span>";
}
}
function HideBackButton() {
var logoElement = document.getElementById("logo");
if (logoElement) {
logoElement.innerHTML = `
<a href="https://groups.io" class="navbar-left">
<img src="../../../../img/org.1/mainlogo.png" height="50" alt="Groups.io">
</a>`;
}
}
function goBack() {
history.back();
}
// submitEvent acts like .submit(), except it is compatible with the app, by using events instead.
function submitEvent(ele) {
console.log("in submitEvent");