问问题
3405 次
1 回答
2
You definitely want to use this library: https://github.com/angular-ui/ui-tinymce Things get much easier then. A sample:
<textarea ui-tinymce="tinymceOptions" ng-model="tinymceModel"></textarea>
myAppModule.controller('MyController', function($scope) {
$scope.tinymceOptions = {
//enter any options here
}
};
});
于 2014-08-13T11:19:14.377 回答