unserver-unify
Version:
16 lines • 417 B
JavaScript
;
angular.module('bamboo.blog').controller('KnowledgeZoneSidebarCtrl', function($scope, TopicApi) {
var _self = this;
$scope.type = 'blogs';
TopicApi.BlogApi({
action: 'gethotblogs'
}, function(data) {
$scope.hottopics = data.data;
})
/* TopicApi.BlogApi({
action: 'getnewblogs'
}, function(data) {
$scope.newtopics = data.data;
})*/
//getStatus();
});