I do not know what causes this, but the list of possible solutions does not hurt.
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {$scope.style={color:red};);
app.directive('myDirective', function() {
return {
replace: true,
template: '<span ng-style="style" class="my-test-class">something!</span>'
};
});
See: ngStyle
source
share