mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
27 lines
742 B
Plaintext
27 lines
742 B
Plaintext
|
Application.Directives.directive('projects', [ 'Project',
|
||
|
function (Project) {
|
||
|
return ({
|
||
|
restrict: 'E',
|
||
|
templateUrl: '<%= asset_path "home/projects.html" %>',
|
||
|
link ($scope, element, attributes) {
|
||
|
// The last projects published/documented on the plateform
|
||
|
$scope.lastProjects = null;
|
||
|
|
||
|
/* PRIVATE SCOPE */
|
||
|
|
||
|
/**
|
||
|
* Kind of constructor: these actions will be realized first when the directive is loaded
|
||
|
*/
|
||
|
const initialize = function () {
|
||
|
Project.lastPublished(function (data) {
|
||
|
$scope.lastProjects = data;
|
||
|
})
|
||
|
};
|
||
|
|
||
|
// !!! MUST BE CALLED AT THE END of the directive
|
||
|
return initialize();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
]);
|