Skip to content

Instantly share code, notes, and snippets.

@premiumFrye
Last active August 29, 2015 14:28
Show Gist options
  • Save premiumFrye/2085b8404ae638bcadbe to your computer and use it in GitHub Desktop.
Save premiumFrye/2085b8404ae638bcadbe to your computer and use it in GitHub Desktop.
exampl android-form-polyfill gist
<html ng-app="ionicApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Ionic Template</title>
<link href="http://code.ionicframework.com/0.9.25/css/ionic.min.css" rel="stylesheet">
<script src="http://code.ionicframework.com/0.9.25/js/ionic.bundle.min.js"></script>
</head>
<body ng-controller="MyCtrl">
<ion-header-bar title="myTitle"></ion-header-bar>
<ion-pane class="has-header" padding="true">
<h2>You can't see me</h2>
</ion-pane>
<ion-content>
<h2> Just a test! </h2>
</ion-content>
</body>
</html>
angular.module('ionicApp', ['ionic'])
.controller('MyCtrl', function($scope) {
$scope.myTitle = 'This header hides the content below';
});
body {
cursor: url('http://ionicframework.com/img/finger.png'), auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment