Skip to content

Instantly share code, notes, and snippets.

@dvbeato
Created April 6, 2015 12:09
Show Gist options
  • Select an option

  • Save dvbeato/eedb6b640230519270d1 to your computer and use it in GitHub Desktop.

Select an option

Save dvbeato/eedb6b640230519270d1 to your computer and use it in GitHub Desktop.
function DriveController($scope, DiretorioService) {
//TODO: Controller Magics
DiretorioService.listarDiretorios()
.then( function(diretorios) {
$scope.diretorios = diretorios;
selecionarDiretorio(diretorios[0]);
DiretorioService.listarArquivosPor($scope.diretorioSelecionado)
.then(function(arquivos) {
$scope.arquivos = arquivos;
})
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment