bump version - fix bug

This commit is contained in:
JFH
2021-11-12 16:50:09 +01:00
parent 8eecf8b229
commit 585bd06212
3 changed files with 4 additions and 4 deletions

View File

@@ -472,7 +472,7 @@ export const getPathBBox = function (path) {
* @returns {module:utilities.BBoxObject} Bounding box object
*/
export const getBBox = function (elem) {
const selected = elem || editorContext_.geSelectedElements()[0];
const selected = elem || editorContext_.getSelectedElements()[0];
if (elem.nodeType !== 1) { return null; }
const elname = selected.nodeName;