I have this code below, that I thought will work. but it doesn't
'use strict';
angular.module('remnantApp')
.directive('bigDiv', function ($timeout) {
return {
restrict: 'E',
scope: {},
template: '<div style="height: {{height}}, background-color: black;">Hello</div>',
link: function(scope, element, attrs) {
scope.height = angular.element(window).height();
}
};
});
Please help