This seems like a pretty simple question but I haven't been able to find the answer anywhere.
When using data binding in AngularJS as such:
<iframe height="{{bodyHeight}}"> </iframe>
I just want to subtract a number from bodyHeight similar to:
<iframe height="{{bodyHeight - 90}}"> </iframe>
I was hoping to do so without using javascript.