Created
March 25, 2015 12:50
-
-
Save 0xae/8a2859a6ab68e3f288f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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