-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add settings to configure features on level editor
There are features that level admins may want to enable or disable on their level, so here we're giving them the chance to do just that with: * the global chat * the voice amplifier * kicks
- Loading branch information
Showing
10 changed files
with
146 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
<template name="console"> | ||
<div class="console"> | ||
<form class="js-console-form"> | ||
<input type="file" tabindex="1" name="file" id="console-file" class="console-file" accept="image/png, image/jpeg, image/gif" /> | ||
<label for="console-file">📎</label> | ||
<textarea class="js-command-input" name="js-command-input" placeholder="Talk here" autocomplete="off"></textarea> | ||
<button type="button" class="js-button-submit">Send</button> | ||
{{#if not chatDisabled}} | ||
<input disabled="{{chatDisabled}}" type="file" tabindex="1" name="file" id="console-file" class="console-file" accept="image/png, image/jpeg, image/gif" /> | ||
<label for="console-file">📎</label> | ||
{{/if}} | ||
<textarea disabled="{{chatDisabled}}" class="js-command-input {{#if chatDisabled}}disabled{{/if}}" name="js-command-input" placeholder="{{#if chatDisabled}}Chat Disabled{{else}}Talk here{{/if}}" autocomplete="off"></textarea> | ||
{{#if not chatDisabled}}<button type="button" class="js-button-submit">Send</button>{{/if}} | ||
</form> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters