Using the TextAngular plugin and trying to customize a toolbar, I'm trying to inject my own service (LinkService
) into the module but I get an [$injector:unpr] Unknown provider
error.
module.config(function($provide, LinkService){
$provide.decorator('taOptions', ['taRegisterTool', '$delegate', function(taRegisterTool, taOptions){
// $delegate is the taOptions we are decorating
// register the tool with textAngular
taRegisterTool('colourRed', {
iconclass: "fa fa-square red",
action: function(){
this.$editor().wrapSelection('forecolor', 'red');
LinkService.createLink(/*...*/)
}
});
// add the button to the default toolbar definition
taOptions.toolbar[1].push('colourRed');
return taOptions;
}]);
});
How to do I inject my service into this config?
We can not inject services into the
configuration
block.We can however craft similar logic into a provider. I am unsure of the usage of
LinkService
, but stubbed out as a provider I can see something like the following...See blog Differences Between Providers In AngularJS for a comprehensive write up on providers