From 4b76d6a05d0142c9d1addca698a922e8929674e1 Mon Sep 17 00:00:00 2001 From: hmhealey Date: Mon, 4 Jan 2016 12:23:46 -0500 Subject: Fixed ViewImage modal to clear its loaded state when its file list changes --- web/react/utils/utils.jsx | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'web/react/utils') diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx index 24d27b10a..a808c9be3 100644 --- a/web/react/utils/utils.jsx +++ b/web/react/utils/utils.jsx @@ -1261,3 +1261,13 @@ export function isFeatureEnabled(feature) { export function isSystemMessage(post) { return post.type && (post.type.lastIndexOf(Constants.SYSTEM_MESSAGE_PREFIX) === 0); } + +export function fillArray(value, length) { + const arr = []; + + for (let i = 0; i < length; i++) { + arr.push(value); + } + + return arr; +} -- cgit v1.2.3-1-g7c22