Add history label component.

This commit is contained in:
Paulo Reis 2018-08-02 15:28:59 +01:00
parent d21f6ef624
commit 8c50e4e9ae

View file

@ -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"
}