Merge pull request #275 from 0ip/patch-5

Mobile Patch [New]
This commit is contained in:
John McLear 2011-12-06 12:10:59 -08:00
commit a444f11900
4 changed files with 147 additions and 32 deletions

View file

@ -16,6 +16,10 @@
var chat = (function()
{
var ua = navigator.userAgent.toLowerCase();
var isAndroid = ua.indexOf("android") > -1;
var isMobileSafari = ua.indexOf("mobile") > -1;
var bottomMargin = "0px";
var chatMentions = 0;
var title = document.title;
var self = {
@ -41,7 +45,10 @@ var chat = (function()
{
$("#focusprotector").hide();
$("#chatbox").css({right: "20px", bottom: "0px", left: "", top: ""});
if(isAndroid || isMobileSafari)
bottommargin = "32px";
$("#chatbox").css({right: "20px", bottom: bottomMargin, left: "", top: ""});
self.scrollDown();
}
@ -53,10 +60,14 @@ var chat = (function()
hide: function ()
{
$("#chatcounter").text("0");
$("#chatbox").hide("slide", { direction: "down" }, 750, function()
if(isAndroid || isMobileSafari) {
$("#chatbox").toggle();
}
else
{
$("#chaticon").show("slide", { direction: "down" }, 500);
});
$("#chatbox").toggle("slide", { direction: "down" }, 625);
}
},
scrollDown: function()
{
@ -155,4 +166,4 @@ var chat = (function()
}
return self;
}());
}());