Formatted with eslint.

Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
pull/6/head^2
Armored Dragon 2024-07-08 13:21:36 -05:00
parent f4bf5c37d9
commit 57460c2328
Signed by: ArmoredDragon
GPG Key ID: C7207ACC3382AD8B
7 changed files with 753 additions and 753 deletions

View File

@ -16,7 +16,7 @@
<div class="title">User registration</div> <div class="title">User registration</div>
<div class="value"> <div class="value">
<label class="switch"> <label class="switch">
<input <% if(settings.ACCOUNT_REGISTRATION) {%> checked <% } %> id="ACCOUNT_REGISTRATION" onchange="toggleState(this.id, this)" type="checkbox" /> <input <% if(settings.ACCOUNT_REGISTRATION) {% /> checked <% } %> id="ACCOUNT_REGISTRATION" onchange="toggleState(this.id, this)" type="checkbox" />
<span class="slider round"></span> <span class="slider round"></span>
</label> </label>
</div> </div>
@ -25,7 +25,7 @@
<div class="title">Hide "Login" in navigation bar</div> <div class="title">Hide "Login" in navigation bar</div>
<div class="value"> <div class="value">
<label class="switch"> <label class="switch">
<input <% if(settings.HIDE_LOGIN) {%> checked <% } %> id="HIDE_LOGIN" onchange="toggleState(this.id, this)" type="checkbox" /> <input <% if(settings.HIDE_LOGIN) {% /> checked <% } %> id="HIDE_LOGIN" onchange="toggleState(this.id, this)" type="checkbox" />
<span class="slider round"></span> <span class="slider round"></span>
</label> </label>
</div> </div>
@ -34,7 +34,7 @@
<div class="title">Serve ATOM feed</div> <div class="title">Serve ATOM feed</div>
<div class="value"> <div class="value">
<label class="switch"> <label class="switch">
<input <% if(settings.CD_RSS) {%> checked <% } %> id="CD_RSS" onchange="toggleState(this.id, this)" type="checkbox" /> <input <% if(settings.CD_RSS) {% /> checked <% } %> id="CD_RSS" onchange="toggleState(this.id, this)" type="checkbox" />
<span class="slider round"></span> <span class="slider round"></span>
</label> </label>
</div> </div>
@ -43,7 +43,7 @@
<div class="title">Serve JSON feed</div> <div class="title">Serve JSON feed</div>
<div class="value"> <div class="value">
<label class="switch"> <label class="switch">
<input <% if(settings.CD_JSON) {%> checked <% } %> id="CD_JSON" onchange="toggleState(this.id, this)" type="checkbox" /> <input <% if(settings.CD_JSON) {% /> checked <% } %> id="CD_JSON" onchange="toggleState(this.id, this)" type="checkbox" />
<span class="slider round"></span> <span class="slider round"></span>
</label> </label>
</div> </div>
@ -63,7 +63,7 @@
<div class="setting largeset"> <div class="setting largeset">
<div class="title">Custom head</div> <div class="title">Custom head</div>
<div class="value"> <div class="value">
<textarea id="CUSTOM_HEADER" onchange="changeValue(this.id, this)" ><%= settings.CUSTOM_HEADER -%></textarea> <textarea id="CUSTOM_HEADER" onchange="changeValue(this.id, this)"><%= settings.CUSTOM_HEADER -%></textarea>
</div> </div>
</div> </div>
</div> </div>