You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2021/03/03 13:36:14 UTC

[openmeetings] branch master updated: [OPENMEETINGS-2583] static field is redefined for Safari

This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/master by this push:
     new 5e4611f  [OPENMEETINGS-2583] static field is redefined for Safari
5e4611f is described below

commit 5e4611f65ec54fc34ae07b43583c7ecf31830d15
Author: Maxim Solodovnik <so...@gmail.com>
AuthorDate: Wed Mar 3 20:36:01 2021 +0700

    [OPENMEETINGS-2583] static field is redefined for Safari
---
 openmeetings-web/src/main/front/wb/src/wb-tool-math.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/openmeetings-web/src/main/front/wb/src/wb-tool-math.js b/openmeetings-web/src/main/front/wb/src/wb-tool-math.js
index 8e179c4..9fdcd92 100644
--- a/openmeetings-web/src/main/front/wb/src/wb-tool-math.js
+++ b/openmeetings-web/src/main/front/wb/src/wb-tool-math.js
@@ -5,7 +5,9 @@ const Role = require('./wb-role');
 const StaticTMath = require('./wb-tool-stat-math');
 
 module.exports = class TMath extends WbShapeBase {
-	static TYPE = 'Math';
+	static get TYPE() {
+		return 'Math';
+	}
 
 	constructor(wb, settings, sBtn) {
 		super();