From b15ba75551cd17f444e4ab96c2650e7954914413 Mon Sep 17 00:00:00 2001 From: ViratSr Date: Tue, 15 Aug 2023 16:46:10 +0530 Subject: [PATCH] fixed position issue --- src/navigator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/navigator.js b/src/navigator.js index 0665b58d..4d114bcc 100644 --- a/src/navigator.js +++ b/src/navigator.js @@ -162,7 +162,7 @@ $.Navigator = function( options ){ this.displayRegion.className = 'displayregion'; (function( style, borderWidth ){ - style.position = 'relative'; + if (style.position === 'static') { style.position = 'relative'; } style.top = '0px'; style.left = '0px'; style.fontSize = '0px';