Skip to content

Instantly share code, notes, and snippets.

@0xae
Created March 25, 2015 12:50
Show Gist options
  • Save 0xae/8a2859a6ab68e3f288f0 to your computer and use it in GitHub Desktop.
Save 0xae/8a2859a6ab68e3f288f0 to your computer and use it in GitHub Desktop.
var edificio = $stateParams.idEdificio;
var alojamento = $stateParams.idAlojamento;
var agregado = $stateParams.idAgregado;
var chave = "RGA::agregado::" + edificio + "." + alojamento + "." + agregado;
$localForage.getItem(chave).then(
function (data){
$scope.data = data;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment