Skip to content

Commit

Permalink
Second Copilot commit
Browse files Browse the repository at this point in the history
  • Loading branch information
NMoskalev committed Jul 17, 2023
1 parent 301de7b commit 04757fe
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions member.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
function skillsMember() {
return {
restrict: 'E',
templateUrl: 'templates/skills-member.html',
scope: {
member: '='
},
controller: function($scope) {
$scope.getMemberName = function() {
return $scope.member.name;
};
}
};
}

0 comments on commit 04757fe

Please sign in to comment.