AngularJS | 100% DIV Height

AngularJS | 100% DIV Height

by Shanid

HTML

<div ng-app="myApp" ng-controller="controllerName">
  <div class="wrap" style="height:{{windowH}}"></div>
</div>

CSS

.wrap{
  background: #ddd;
}

JavaScript

var app = angular.module('myApp',[]);

app.controller ('controllerName',function($scope) {
	$scope.windowH = window.innerHeight + 'px';
});