I have use text-Angular.js for making my div as RTE and bind the data somewhere. Here is the code
<div text-angular="text-angular" ng-model="htmlcontent"></div>
<div class="btn btn-primary" ng-click="getRTEText()">Get Text</div>
and on get Text I am using following line of code.
$scope.getRTEText = function(){
console.log($scope.htmlcontent);
}
But I'm getting $scope.htmlcontent as undefined. What I want is internal HTML. but I am unable to get it. I am new in angular JS. Please help.
Just change to this
It's a weird syntax, but it is necessary since $modal creates a child scope of ModalInstanceCtrl.