Merge pull request #8441 from fredj/f_8440

Fix loaded script for the example-verbatim examples
This commit is contained in:
Frédéric Junod
2018-07-26 14:02:33 +02:00
committed by GitHub
2 changed files with 4 additions and 5 deletions

View File

@@ -44,7 +44,7 @@ tags: "fullscreen, geolocation, orientation, mobile"
<button id="geolocate">Geolocate Me!</button>
<button id="simulate">Simulate</button>
</div>
<script src="./resources/common.js" type="text/javascript"></script>
<script src="loader.js?id=geolocation-orientation" type="text/javascript"></script>
<script src="common.js"></script>
<script src="geolocation-orientation.js"></script>
</body>
</html>

View File

@@ -25,8 +25,7 @@ cloak:
</head>
<body>
<div id="map" class="map"></div>
<script src="https://code.jquery.com/jquery-2.2.3.min.js" type="text/javascript"></script>
<script src="./resources/common.js" type="text/javascript"></script>
<script src="loader.js?id=mobile-full-screen" type="text/javascript"></script>
<script src="common.js"></script>
<script src="mobile-full-screen.js"></script>
</body>
</html>