diff --git a/app/modules/history/history-lightbox/history-entry.directive.coffee b/app/modules/history/history-lightbox/history-entry.directive.coffee index d5d2a867..f6c573ce 100644 --- a/app/modules/history/history-lightbox/history-entry.directive.coffee +++ b/app/modules/history/history-lightbox/history-entry.directive.coffee @@ -18,7 +18,7 @@ ### -HistoryEntryDirective = (lightboxService) -> +HistoryEntryDirective = () -> return { scope: { entry: "<" @@ -26,8 +26,4 @@ HistoryEntryDirective = (lightboxService) -> templateUrl:"history/history-lightbox/history-entry.html", } -HistoryEntryDirective.$inject = [ - "lightboxService" -] - angular.module('taigaHistory').directive("tgHistoryEntry", HistoryEntryDirective)