propostas.controller.js
857 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('PropostasPageController', PropostasPageController);
/** @ngInject */
function PropostasPageController(DialogaService, $log) {
$log.debug('PropostasPageController');
var vm = this;
vm.DialogaService = DialogaService;
vm.$log = $log;
vm.init();
}
PropostasPageController.prototype.init = function () {
var vm = this;
vm.article = null;
vm.categories = null;
vm.currentCategory = null;
vm.loading = true;
vm.error = false;
vm.loadData();
};
PropostasPageController.prototype.loadData = function () {
var vm = this;
vm.DialogaService.getCategories(function(categories){
vm.categories = categories;
}, function (error) {
vm.error = error;
vm.$log.error(error);
});
};
})();