Send notification when user is writing a message

This commit is contained in:
2021-03-08 18:09:56 +01:00
parent f938fd7850
commit ffb6398fbb
5 changed files with 36 additions and 2 deletions

View File

@ -4,7 +4,7 @@
* @author Pierre HUBERT
*/
ComunicWeb.common.date = {
const ComunicDate = {
/**
* Get current timestamp
*
@ -99,4 +99,6 @@ ComunicWeb.common.date = {
timeDiffToStr: function(time){
return this.diffToStr(this.time() - time);
},
}
}
ComunicWeb.common.date = ComunicDate;