Archived
1
0

update livechan

This commit is contained in:
Jeff Becker 2016-07-05 08:17:19 -04:00
parent 5cf12f37a5
commit 1c632666ab
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B
2 changed files with 4 additions and 2 deletions

View File

@ -1030,12 +1030,14 @@ Chat.prototype.notify = function(message) {
Chat.prototype.showNotifyPane = function () {
var pane = this.chatElems.notify.pane;
pane.style.zIndex = 5;
pane.style.visibility = 'visible';
}
/* @brief hide the notification pane */
Chat.prototype.showNotifyPane = function () {
var pane = this.chatElems.notify.pane;
pane.style.zIndex = -1;
pane.style.visibility = 'hidden';
}
Chat.prototype.error = function(message) {
@ -1186,7 +1188,7 @@ Chat.prototype.generateChat = function(data) {
message.className = 'livechan_chat_output_message';
if (data.Name) {
if (data.PostName) {
name.appendChild(document.createTextNode(data.PostName));
} else {
name.appendChild(document.createTextNode('Anonymous'));

View File

@ -110,7 +110,7 @@ input, textarea, select {
}
.livechan_captcha_inner {
padding: 200px;
padding: 20%;
}
.livechan_captcha_image {