Added UI for chat notification settings.
This commit is contained in:
parent
142d78ffb4
commit
3ec9e30f5d
@ -34,6 +34,8 @@
|
||||
<template name="chatOptions">
|
||||
<p>Chat Options:</p>
|
||||
{{> optionsFontSize}}
|
||||
<br/><br/>
|
||||
{{> notificationSettings}}
|
||||
</template>
|
||||
|
||||
<!-- Displays and styles an individual message in the chat -->
|
||||
@ -56,6 +58,16 @@
|
||||
{{autoscroll}} <!-- Scroll to the bottom after inserting a new message -->
|
||||
</template>
|
||||
|
||||
<template name="notificationSettings">
|
||||
New Message Notifications:
|
||||
<form>
|
||||
<input type="radio" name="chatNotification" id="chatNotificationOn" value="chatNotificationOn" checked="checked" />
|
||||
<label for="chatNotificationOn">On</label>
|
||||
<input type="radio" name="chatNotification" id="chatNotificationOff" value="chatNotificationOff" />
|
||||
<label for="chatNotificationOff">Off</label>
|
||||
</form>
|
||||
</template>
|
||||
|
||||
<!-- Displays the list of options available -->
|
||||
<template name="optionsBar">
|
||||
<div class="optionsBar">
|
||||
|
Loading…
Reference in New Issue
Block a user