mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
89e146d419
- twitter - members
23 lines
600 B
Plaintext
23 lines
600 B
Plaintext
Application.Directives.directive('news', [ 'Setting',
|
|
function (Setting) {
|
|
return ({
|
|
restrict: 'E',
|
|
templateUrl: '<%= asset_path "home/news.html" %>',
|
|
link ($scope, element, attributes) {
|
|
// The admin blogpost
|
|
$scope.homeBlogpost = null;
|
|
|
|
// constructor
|
|
const initialize = function () {
|
|
Setting.get({ name: 'home_blogpost' }, function (data) {
|
|
$scope.homeBlogpost = data.setting.value;
|
|
})
|
|
};
|
|
|
|
// !!! MUST BE CALLED AT THE END of the directive
|
|
return initialize();
|
|
}
|
|
});
|
|
}
|
|
]);
|