mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 08:56:10 +00:00
condense: Replace _message_content_height_cache Dict with IntDict.
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
committed by
Tim Abbott
parent
2f91f583fc
commit
e10da9c85f
@@ -10,9 +10,9 @@ This library implements two related, similar concepts:
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const Dict = require('./dict').Dict;
|
const IntDict = require('./int_dict').IntDict;
|
||||||
|
|
||||||
let _message_content_height_cache = new Dict();
|
const _message_content_height_cache = new IntDict();
|
||||||
|
|
||||||
function show_more_link(row) {
|
function show_more_link(row) {
|
||||||
row.find(".message_condenser").hide();
|
row.find(".message_condenser").hide();
|
||||||
@@ -144,7 +144,7 @@ exports.toggle_collapse = function (message) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
exports.clear_message_content_height_cache = function () {
|
exports.clear_message_content_height_cache = function () {
|
||||||
_message_content_height_cache = new Dict();
|
_message_content_height_cache.clear();
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.un_cache_message_content_height = function (message_id) {
|
exports.un_cache_message_content_height = function (message_id) {
|
||||||
|
|||||||
Reference in New Issue
Block a user