programa.controller.js
842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(function() {
'use strict';
angular
.module('dialoga')
.controller('ProgramasPageController', ProgramasPageController);
/** @ngInject */
function ProgramasPageController(DialogaService, $log) {
$log.debug('ProgramasPageController');
var vm = this;
vm.DialogaService = DialogaService;
vm.$log = $log;
vm.init();
}
ProgramasPageController.prototype.init = function () {
var vm = this;
vm.article = null;
vm.categories = null;
vm.currentCategory = null;
vm.loading = true;
vm.error = false;
vm.loadData();
};
ProgramasPageController.prototype.loadData = function () {
var vm = this;
vm.DialogaService.getTemas(function(temas){
vm.categories = temas;
}, function (error) {
vm.error = error;
vm.$log.error(error);
});
};
})();