nodebb-theme-harmony 1.1.84 → 1.1.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -42,6 +42,11 @@
|
|
|
42
42
|
</label>
|
|
43
43
|
</div>
|
|
44
44
|
|
|
45
|
+
<div class="form-check mb-3">
|
|
46
|
+
<input class="form-check-input" type="checkbox" id="openSidebars" name="openSidebars" {{{ if theme.openSidebars }}}checked{{{ end }}}>
|
|
47
|
+
<label class="form-check-label" for="openSidebars">[[themes/harmony:settings.openSidebars]]</label>
|
|
48
|
+
</div>
|
|
49
|
+
|
|
45
50
|
<div class="form-check mb-3">
|
|
46
51
|
<input class="form-check-input" type="checkbox" id="chatModals" name="chatModals" {{{ if theme.chatModals }}}checked{{{ end }}}>
|
|
47
52
|
<label class="form-check-label" for="chatModals">
|
|
@@ -34,6 +34,10 @@
|
|
|
34
34
|
</p>
|
|
35
35
|
</div>
|
|
36
36
|
</div>
|
|
37
|
+
<div class="form-check form-switch">
|
|
38
|
+
<input type="checkbox" class="form-check-input" id="openSidebars" name="openSidebars" />
|
|
39
|
+
<label for="openSidebars" class="form-check-label">[[themes/harmony:settings.openSidebars]]</label>
|
|
40
|
+
</div>
|
|
37
41
|
<div class="form-check form-switch">
|
|
38
42
|
<input type="checkbox" class="form-check-input" id="chatModals" name="chatModals" />
|
|
39
43
|
<div for="chatModals" class="form-check-label">
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
{{{ end }}}
|
|
71
71
|
{{{ end }}}
|
|
72
72
|
|
|
73
|
-
{{{ if (
|
|
73
|
+
{{{ if (canChat && !banned) }}}
|
|
74
74
|
<div class="btn-group flex-fill">
|
|
75
75
|
<a {{{ if hasPrivateChat }}}component="account/chat"{{{ else }}}component="account/new-chat"{{{ end }}} href="#" class="btn btn-light" role="button">[[user:chat]]</a>
|
|
76
76
|
{{{ if hasPrivateChat}}}
|