flosight-api/public/js/controllers/index.js
2014-01-07 18:12:37 -03:00

11 lines
288 B
JavaScript
Executable File

'use strict';
angular.module('mystery.system').controller('IndexController', ['$scope', 'Global', 'Index', function ($scope, Global, Index) {
$scope.global = Global;
$scope.last_blocks = function() {
Index.query(function(blocks) {
$scope.blocks = blocks;
});
};
}]);