Start working on filter checkboxes

This commit is contained in:
Calvin Montgomery 2013-11-15 20:23:57 -06:00
parent 681911ffb1
commit ca4090c533
2 changed files with 21 additions and 0 deletions

View File

@ -1840,3 +1840,7 @@ function showMOTDEditor() {
$("#editmotd").hide();
$("#togglemotd").hide();
}
function filterChannelLog() {
}

View File

@ -228,5 +228,22 @@
</div>
<div id="chanlog" class="span12">
<button class="btn" id="chanlog_refresh">Refresh</button>
<form class="form-inline" action="javascript:void(0)">
<label class="checkbox" for="filter_chat">Chat
<input type="checkbox" id="filter_chat">
</label>
<label class="checkbox" for="filter_polls">Polls
<input type="checkbox" id="filter_polls">
</label>
<label class="checkbox" for="filter_joinquit">Join/Quit Messages
<input type="checkbox" id="filter_joinquit">
</label>
<label class="checkbox" for="filter_queue">Playlist actions
<input type="checkbox" id="filter_queue">
</label>
<label class="checkbox" for="filter_channelsettings">Channel settings
<input type="checkbox" id="filter_channelsettings">
</label>
</form>
<pre id="chanlog_contents" style="max-height: 400px; overflow-y: scroll"></pre>
</div>