Created
June 3, 2015 19:33
-
-
Save jongravois/cfe8dbd48f7036a9a2f4 to your computer and use it in GitHub Desktop.
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
<!doctype html> | |
<html ng-app="example"> | |
<head> | |
<meta charset="utf-8"> | |
<script>document.write('<base href="' + document.location + '" />');</script> | |
<script src="bower_components/angular/angular.js"></script> | |
<script src="bower_components/ag-grid/dist/angular-grid.js"></script> | |
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" /> | |
<link rel="stylesheet" type="text/css" href="bower_components/ag-grid/dist/angular-grid.css"> | |
<link rel="stylesheet" type="text/css" href="bower_components/ag-grid/dist/theme-fresh.css"> | |
<link rel="stylesheet" type="text/css" href="css/styles.css" /> | |
<script src="app/app.js"></script> | |
</head> | |
<style> | |
.bold-and-red { | |
color: darkred; | |
font-weight: bold; | |
} | |
</style> | |
<body ng-controller="exampleCtrl"> | |
<div style="height: 10%;"> | |
<button ng-click="onHardRefresh()">Hard Refresh</button> | |
{{pending_view}} | |
</div> | |
<div style="height: 90%;" ag-grid="gridOptions" class="ag-fresh"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment