generator-steroids
Version:
A Yeoman generator for Steroids
18 lines (11 loc) • 399 B
HTML
<script>
// Initialize a new WebView and push it to the layer stack
function showCat() {
var webView = new steroids.views.WebView("/views/layerStackExample/showCat.html");
steroids.layers.push(webView);
}
steroids.view.navigationBar.show("Layer Stack");
</script>
<div class="content-padded">
<div class="topcoat-button center full" ontouchend="showCat()">Open showCat.html</div>
</div>