textAngular指令(https://github.com/fraywing/textAngular)有许多预设,如添加链接,块引用等,但我想更改工具栏上的清除格式选项中的默认图标。我怎样才能做到这一点?
答案 0 :(得分:0)
这应该符合https://github.com/fraywing/textAngular/blob/master/demo/static-demo.html:
angular.module("changeIconTest", ['textAngular'])
.config(function($provide){
$provide.decorator('taTools', ['$delegate', function(taTools){
taTools.clear.iconclass = 'icon-ban-circle'; // Use any font-awesome identifier
return taTools;
}]);
});