mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-21 15:54:22 +01:00
18 lines
435 B
JavaScript
18 lines
435 B
JavaScript
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
Application.Directives.directive('fabUserAvatar', [ () =>
|
|
({
|
|
restrict: 'E',
|
|
scope: {
|
|
userAvatar: "=ngModel",
|
|
avatarClass: '@'
|
|
},
|
|
templateUrl: '<%= asset_path "shared/_user_avatar.html" %>'
|
|
})
|
|
|
|
]);
|
|
|