mirror of https://github.com/calzoneman/sync.git
Add refresh button for chanlogs
This commit is contained in:
parent
544a316cad
commit
cf7972f740
|
@ -49,6 +49,9 @@
|
||||||
$("#show_chanlog").click(function () {
|
$("#show_chanlog").click(function () {
|
||||||
socket.emit("readChanLog");
|
socket.emit("readChanLog");
|
||||||
});
|
});
|
||||||
|
$("#chanlog_refresh").click(function () {
|
||||||
|
socket.emit("readChanLog");
|
||||||
|
});
|
||||||
|
|
||||||
genPermissionsEditor();
|
genPermissionsEditor();
|
||||||
|
|
||||||
|
|
|
@ -225,5 +225,6 @@
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<div id="chanlog" class="span12">
|
<div id="chanlog" class="span12">
|
||||||
|
<button class="btn" id="chanlog_refresh">Refresh</button>
|
||||||
<pre id="chanlog_contents" style="max-height: 400px; overflow-y: scroll"></pre>
|
<pre id="chanlog_contents" style="max-height: 400px; overflow-y: scroll"></pre>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue