From 2d3f43edf918014815f66f644e7c8e533a7701dd Mon Sep 17 00:00:00 2001
From: KDSBrowne <kert.browne85@gmail.com>
Date: Thu, 4 Jul 2019 17:54:20 +0000
Subject: [PATCH] use calculation to find max z-index

---
 .../whiteboard-overlay/text-draw-listener/component.jsx       | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-overlay/text-draw-listener/component.jsx b/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-overlay/text-draw-listener/component.jsx
index cce60f2a70..990e60d6ec 100755
--- a/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-overlay/text-draw-listener/component.jsx
+++ b/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-overlay/text-draw-listener/component.jsx
@@ -5,7 +5,9 @@ const ANNOTATION_CONFIG = Meteor.settings.public.whiteboard.annotations;
 const DRAW_START = ANNOTATION_CONFIG.status.start;
 const DRAW_UPDATE = ANNOTATION_CONFIG.status.update;
 const DRAW_END = ANNOTATION_CONFIG.status.end;
-const MAX_Z_INDEX = 2147483647; // maximun value of z-index to prevent other things from overlapping
+
+// maximum value of z-index to prevent other things from overlapping
+const MAX_Z_INDEX = 2 ** 31 - 1;
 
 export default class TextDrawListener extends Component {
   constructor() {
-- 
GitLab