fix(filter): remove the $ prefix from filter service ids

This commit is contained in:
Igor Minar
2011-12-06 12:20:35 -08:00
parent b97c6e5f74
commit c28662d28d
4 changed files with 8 additions and 8 deletions

View File

@@ -286,7 +286,7 @@ This example shows how to implement a custom HTML editor widget in Angular.
this.htmlContent = '<b>Hello</b> <i>World</i>!';
}
HTMLEditorWidget.$inject = ['$element', 'html$Filter'];
HTMLEditorWidget.$inject = ['$element', 'htmlFilter'];
function HTMLEditorWidget(element, htmlFilter) {
var self = this;