From 3a8f910783da38da096fad6ea4c9e0930a9fab18 Mon Sep 17 00:00:00 2001 From: d47081 Date: Sun, 10 Jul 2022 12:38:58 +0300 Subject: [PATCH] display recipients quentity on sent icon title --- js/twister_formatpost.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/twister_formatpost.js b/js/twister_formatpost.js index d8ed7af..2e7df54 100644 --- a/js/twister_formatpost.js +++ b/js/twister_formatpost.js @@ -279,6 +279,7 @@ function setPostInfoSent(n, k, item) { function(args,count) { if( count >= 2 ) { // assume 2 peers (me + 1) is enough for "sent" args.item.text("\u2713"); // check mark + args.item.attr("title", "\u2713 " + count); // display recipients quentity on sent icon title } else { args.item.text("\u231B"); // hour glass setTimeout(setPostInfoSent,30000,n,k,item);