Commit f964511f73a93ee070c5fd1523485bd82bd586e3

Authored by Eric Fernandez
1 parent 77820e68e2
Exists in master and in 1 other branch develop

nombres descriptivos para las variables

Showing 1 changed file with 6 additions and 6 deletions   Show diff stats
... ... @@ -3,27 +3,27 @@ angular.module('focaModal')
3 3 '$uibModal',
4 4 function($uibModal) {
5 5 return {
6   - confirm: function(a) {
  6 + confirm: function(textoModal) {
7 7 return $uibModal.open({
8 8 templateUrl: 'modal-confirm.html',
9 9 controller: 'focaModalConfirmController',
10 10 animation: false,
11 11 backdrop: false,
12   - resolve: { text: function() { return a; } }
  12 + resolve: { text: function() { return textoModal; } }
13 13 })
14 14 .result.then(
15   - function(p) {
16   - return p;
  15 + function(resultado) {
  16 + return resultado;
17 17 }
18 18 );
19 19 },
20   - alert: function(a) {
  20 + alert: function(textoModal) {
21 21 return $uibModal.open({
22 22 templateUrl: 'modal-alert.html',
23 23 controller: 'focaModalAlertController',
24 24 animation: false,
25 25 backdrop: false,
26   - resolve: { text: function() { return a; } }
  26 + resolve: { text: function() { return textoModal; } }
27 27 });
28 28 }
29 29 };