fixed some notification issues

This commit is contained in:
kay.one 2011-07-02 10:41:10 -07:00
commit 555e62fd17
3 changed files with 28 additions and 16 deletions

View file

@ -41,9 +41,11 @@
}
function closeMsg() {
//hide the message
$('#msgBox').hide("slide", { direction: "right" }, speed);
isShown = false;
//hide the message
if (isShown) {
$('#msgBox').hide("slide", { direction: "right" }, speed);
isShown = false;
}
}
});