I want to set the direction of the body-element depending on some logic inside the controller. 
So if a language file has a certain value, i want to change from "ltr" to "rtl".
I know there is a way of setting HTML attributes via ng-attr-, but it's not working for dir. 
I made a JSFiddle to show my problem. The question is:
How can I set the dir-attribute via the controller?
<div ng-controller="MyCtrl">
    <div ng-attr-dir="{{direct}}">   
        <p>Test</p>
    </div>
</div>
var myApp = angular.module('myApp',[]);
function MyCtrl($scope) {
    $scope.direct = "rtl";
}
 
     
     
     
     
    