A Pen by Nicholas Frye on CodePen.
Last active
August 29, 2015 14:28
-
-
Save premiumFrye/2085b8404ae638bcadbe to your computer and use it in GitHub Desktop.
exampl android-form-polyfill gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('ionicApp', ['ionic']) | |
.controller('MyCtrl', function($scope) { | |
$scope.myTitle = 'This header hides the content below'; | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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