Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jouderianjr/c18a098c9956149daeefc299eae5ae56 to your computer and use it in GitHub Desktop.
Save jouderianjr/c18a098c9956149daeefc299eae5ae56 to your computer and use it in GitHub Desktop.
angular.module('test', [])
.controller('TesteCtrl', function($scope){
$scope.modelo = {
nome: 'jouderian',
sexo: "masculino",
idade: 24
}
$scope.modeloToUpdate = {}
$scope.openModal = function(mod){
$scope.modeloToUpdate = angular.copy(mod);
//abre o modal e tal
}
$scope.salvar = function(mod){
$scope.modelo = angular.copy(mod);
$scope.modeloToUpdate = {};
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment