Switching 'data-enable-page-scroll' to true or false triggers different features and disrupts the section positions. Setting it to 'false' enables 'pageindicator' and the page displays perfectly, but 'moreoptions' fails to work. When set to 'true', 'moreoptions' works but not the page indicator, and the entire page shifts downwards significantly on the watch.
When I say 'pageindicator' doesn't work, I mean it doesn't appear at the top of the page. Regarding 'moreoptions' not working, the three dots show up on the right side with proper indentation, but the 'moreoptionsPopupCircle' is not displayed on the screen. Also, there's no animation when tapping the button as if it were just a static element on the screen.
Device: Gear S3 Frontier
Index.html:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, user-scalable=no"/>
<title>Wearable UI</title>
<link rel="stylesheet" media="all and (-tizen-geometric-shape: circle)" href="/lib/tau/wearable/theme/default/tau.min.css">
<link rel="stylesheet" media="all and (-tizen-geometric-shape: circle)" href="/lib/tau/wearable/theme/default/tau.circle.min.css">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" type="text/css" href="css/style-main.css"/>
</head>
<body>
<div id="application">
<div id="pageIndicatorPage" class="ui-page" data-enable-page-scroll="true">
<button type="button" class="ui-more">More Options</button>
<div id="pageIndicator" class="ui-page-indicator"></div>
<div id="hsectionchanger" class="ui-content">
<div>
<section class="ui-section-active section" style="text-align:center">
<header id="main">Main</header>
<div id="a" class="positive-left circle-button"></div>
</section>
<section class="section" style="text-align:center">
<header id="main2">b</header>
<div id="b" class="positive-left circle-button"></div>circle-button"></div>
</section>
</div>
</div>
<!-- Circle Profile -->
<div id="moreoptionsPopupCircle" class="ui-popup">
<div id="selector" class="ui-selector">
<div class="ui-item show-icon" data-title="Show"></div>
<div class="ui-item human-icon" data-title="Human"></div>
<div class="ui-item delete-icon" data-title="Delete"></div>
<div class="ui-item x-icon" data-title="X Icon"></div>
<div class="ui-item fail-icon" data-title="Fail"></div>
</div>
</div>
<script type="text/javascript" src="moreoptions.js"></script>
</div>
</div>
<script type="text/javascript" src="/lib/tau/wearable/js/tau.min.js"></script>
<script type="text/javascript" src="js/circle-helper.js"></script>
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<script src="js/pageindicator.js"></script>
</body>
moreoptions.js: http://pastebin.com/Ykx1E49v
pageindicator.js: http://pastebin.com/C28V9Jfa
style.css: http://pastebin.com/7pwGqnMz
style-main.css: http://pastebin.com/J1MW8Zyx