2.3.7 horizontal nav, media keys

This commit is contained in:
Trevor Squillario 2012-12-21 00:42:39 -05:00
parent 53ed1bc0d4
commit 77831e1ef6
17 changed files with 1914 additions and 1553 deletions

View file

@ -4,7 +4,7 @@ function updateChatMessages() {
updater = $.periodic({ period: 1000, decay: 1.5, max_period: 1800000 }, function () {
$.ajax({
periodic: this,
url: baseURL + '/getChatMessages.view?' + baseParams + '&v=' + apiVersion + '&c=' + applicationName + '&since=' + starttime,
url: baseURL + '/getChatMessages.view?' + baseParams + '&since=' + starttime,
method: 'GET',
dataType: protocol,
timeout: 10000,
@ -52,7 +52,7 @@ function addChatMessage(msg) {
url: baseURL + '/addChatMessage.view?' + baseParams,
dataType: protocol,
timeout: 10000,
data: { v: apiVersion, c: applicationName, message: msg },
data: { message: msg },
success: function () {
updater.reset();
},