diff --git a/services/web/public/coffee/ide/history/components/historyLabel.coffee b/services/web/public/coffee/ide/history/components/historyLabel.coffee new file mode 100644 index 0000000000..2394b76f8b --- /dev/null +++ b/services/web/public/coffee/ide/history/components/historyLabel.coffee @@ -0,0 +1,17 @@ +define [ + "base" +], (App) -> + historyLabelController = ($scope, $element, $attrs, $filter, _) -> + ctrl = @ + return + + App.component "historyLabel", { + bindings: + labelText: "<" + labelOwnerName: "<" + labelCreationDateTime: "<" + isOwnedByCurrentUser: "<" + onLabelDelete: "&" + controller: historyLabelController + templateUrl: "historyLabelTpl" + } \ No newline at end of file