9
0
mirror of https://github.com/donlon/cloudflare-error-page.git synced 2025-12-19 14:59:28 +00:00

editor: remove html_title option

This commit is contained in:
Anthony Donlon
2025-11-20 22:01:00 +08:00
parent f1bebdc841
commit fcf5c30c17

View File

@@ -43,7 +43,6 @@
// can be changed if specified by '?from=<name>' // can be changed if specified by '?from=<name>'
let initialConfig = { let initialConfig = {
"html_title": "cloudflare.com | 500: Internal server error",
"title": "Internal server error", "title": "Internal server error",
"error_code": 500, "error_code": 500,
@@ -169,7 +168,6 @@
/* Fill form from config */ /* Fill form from config */
function loadConfig(cfg) { function loadConfig(cfg) {
$('html_title').value = cfg.html_title ?? '';
$('title').value = cfg.title ?? ''; $('title').value = cfg.title ?? '';
$('error_code').value = cfg.error_code ?? ''; $('error_code').value = cfg.error_code ?? '';
@@ -206,7 +204,6 @@
/* Read config from form inputs */ /* Read config from form inputs */
function readConfig() { function readConfig() {
return { return {
html_title: $('html_title').value,
title: $('title').value, title: $('title').value,
error_code: Number($('error_code').value) || 0, error_code: Number($('error_code').value) || 0,
more_information: { more_information: {
@@ -548,14 +545,6 @@
<div class="mb-3"> <div class="mb-3">
<!-- <h6 class="mb-2">Page</h6> --> <!-- <h6 class="mb-2">Page</h6> -->
<div class="form-row">
<label for="html_title">HTML Title</label>
<div class="control">
<input id="html_title" class="form-control form-control-sm"
placeholder="cloudflare.com | 500: Internal server error" />
</div>
</div>
<div class="form-row"> <div class="form-row">
<label for="title">Title</label> <label for="title">Title</label>
<div class="control"> <div class="control">