mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-04 22:27:10 -04:00
Merge 9bb9f59a29
into 88a8853fda
This commit is contained in:
commit
53654cd99c
1 changed files with 23 additions and 6 deletions
|
@ -14,11 +14,13 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
var chatAnimationIsStarted = false;
|
||||
|
||||
var chat = (function()
|
||||
{
|
||||
var self = {
|
||||
show: function ()
|
||||
{
|
||||
{ if (chatAnimationIsStarted) return;
|
||||
$("#chaticon").hide("slide", {
|
||||
direction: "down"
|
||||
}, 500, function ()
|
||||
|
@ -46,18 +48,24 @@ var chat = (function()
|
|||
},
|
||||
hide: function ()
|
||||
{
|
||||
if (chatAnimationIsStarted) return;
|
||||
$("#chatcounter").text("0");
|
||||
$("#chatbox").hide("slide", { direction: "down" }, 750, function()
|
||||
{
|
||||
$("#chaticon").show("slide", { direction: "down" }, 500);
|
||||
$("#chaticon").show("slide", { direction: "down" }, 500, function()
|
||||
{
|
||||
chatAnimationIsStarted = false;
|
||||
});
|
||||
});
|
||||
},
|
||||
scrollDown: function()
|
||||
{
|
||||
//console.log($('#chatbox').css("display"));
|
||||
|
||||
if($('#chatbox').css("display") != "none")
|
||||
if($('#chatbox').css("display") != "none") {
|
||||
$('#chattext').animate({scrollTop: $('#chattext')[0].scrollHeight}, "slow");
|
||||
}
|
||||
chatAnimationIsStarted = false;
|
||||
},
|
||||
send: function()
|
||||
{
|
||||
|
@ -98,7 +106,7 @@ var chat = (function()
|
|||
var count = Number($("#chatcounter").text());
|
||||
count++;
|
||||
$("#chatcounter").text(count);
|
||||
// chat throb stuff -- Just make it throb in for ~2 secs then fadeotu
|
||||
// chat throb stuff -- Just make it throb in for ~2 secs then fadeout
|
||||
$('#chatthrob').html("<b>"+authorName+"</b>" + ": " + text);
|
||||
$('#chatthrob').effect("pulsate", {times:1,mode:"hide"},2000);
|
||||
}
|
||||
|
@ -108,6 +116,15 @@ var chat = (function()
|
|||
},
|
||||
init: function()
|
||||
{
|
||||
$("#chaticon").mouseenter(function(){
|
||||
if (!chatAnimationIsStarted) self.show();
|
||||
});
|
||||
$("#titlecross").mouseenter(function(){
|
||||
if (!chatAnimationIsStarted) self.hide();
|
||||
});
|
||||
$("#chatbox").mouseenter(function(){
|
||||
if (!chatAnimationIsStarted) $("#chatinput").focus();
|
||||
});
|
||||
$("#chatinput").keypress(function(evt)
|
||||
{
|
||||
//if the user typed enter, fire the send
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue