Implement emotes
This commit is contained in:
parent
53138fe1f0
commit
002888a0de
8 changed files with 185 additions and 15 deletions
|
|
@ -177,6 +177,7 @@ html(lang="en")
|
|||
span.caret
|
||||
ul.dropdown-menu
|
||||
li: a(href="#cs-chatfilters", data-toggle="tab", onclick="javascript:socket.emit('requestChatFilters')") Chat Filters
|
||||
li: a(href="#cs-emotes", data-toggle="tab") Emotes
|
||||
li: a(href="#cs-motdeditor", data-toggle="tab", tabindex="-1") MOTD
|
||||
li: a(href="#cs-csseditor", data-toggle="tab", tabindex="-1") CSS
|
||||
li: a(href="#cs-jseditor", data-toggle="tab", tabindex="-1") Javascript
|
||||
|
|
@ -196,6 +197,7 @@ html(lang="en")
|
|||
mixin recentjoins()
|
||||
mixin chanranks()
|
||||
mixin chatfilters()
|
||||
mixin emotes()
|
||||
mixin chanlog()
|
||||
mixin permeditor()
|
||||
.modal-footer
|
||||
|
|
|
|||
|
|
@ -134,6 +134,26 @@ mixin chatfilters
|
|||
button#cs-chatfilters-import.btn.btn-default Import filter list
|
||||
textarea#cs-chatfilters-exporttext.form-control(rows="5")
|
||||
|
||||
mixin emotes
|
||||
#cs-emotes.tab-pane
|
||||
h4 Emotes
|
||||
form.form-horizontal(action="javascript:void(0)", role="form")
|
||||
+textbox("cs-emotes-newname", "Emote name")
|
||||
+textbox("cs-emotes-newimage", "Emote image")
|
||||
.form-group
|
||||
.col-sm-8.col-sm-offset-4
|
||||
button#cs-emotes-newsubmit.btn.btn-primary Create Emote
|
||||
table.table.table-striped.table-condensed
|
||||
thead
|
||||
tr
|
||||
th Delete
|
||||
th Name
|
||||
th Image
|
||||
|
||||
button#cs-emotes-export.btn.btn-default Export emote list
|
||||
button#cs-emotes-import.btn.btn-default Import emote list
|
||||
textarea#cs-emotes-exporttext.form-control(rows="5")
|
||||
|
||||
mixin chanlog
|
||||
#cs-chanlog.tab-pane
|
||||
h4 Channel Log
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue