How do you get and set the parent height from an element from inside a directive?
This is what I have now, obviously it\'s not working.
var vAlign =
e.parent is a function, so you must call it as such:
e.parent().height(1200);
Further, if you do not load jquery on the page, you will have to use
.css('height', '1200px')
instead, as jqLite does not include .height