18 lines
369 B
HTML
Executable File
18 lines
369 B
HTML
Executable File
<html>
|
|
<head>
|
|
<script type="text/javascript" src="cordova.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<script>
|
|
document.addEventListener("deviceready", function(){
|
|
var autoHideNavigationBar = false;
|
|
window.navigationbar.setUp(autoHideNavigationBar);
|
|
}, false);
|
|
</script>
|
|
|
|
<p><button onclick="window.navigationbar.hide();">hide</button></p>
|
|
|
|
</body>
|
|
</html>
|