如何更改textAngular指令工具栏的“clear”选项中的默认图标?

时间:2016-02-26 13:34:52

标签: angularjs

textAngular指令(https://github.com/fraywing/textAngular)有许多预设,如添加链接,块引用等,但我想更改工具栏上的清除格式选项中的默认图标。我怎样才能做到这一点?

1 个答案:

答案 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;

        }]);
    });