From f3a76a267cd0cc630716752f9eef517a5b752b3e Mon Sep 17 00:00:00 2001 From: ambujsahu81 Date: Fri, 20 Jan 2023 18:23:32 +0530 Subject: [PATCH] add box-sizing property to the navigator display region --- src/navigator.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/navigator.js b/src/navigator.js index 92620af5..f7fe611e 100644 --- a/src/navigator.js +++ b/src/navigator.js @@ -184,6 +184,7 @@ $.Navigator = function( options ){ style.styleFloat = 'left'; //IE style.zIndex = 999999999; style.cursor = 'default'; + style.boxSizing = 'content-box'; }( this.displayRegion.style, this.borderWidth )); $.setElementPointerEventsNone( this.displayRegion ); $.setElementTouchActionNone( this.displayRegion );