Commit ea3331c100776190388c23c1c24d3b7cf3ecdfdc

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

precommit

Showing 2 changed files with 4 additions and 4 deletions   Show diff stats
src/js/controller.js
... ... @@ -19,4 +19,4 @@ angular.module('focaModal')
19 19 $uibModalInstance.close(true);
20 20 };
21 21 }
22   -])
23 22 \ No newline at end of file
  23 +]);
24 24 \ No newline at end of file
... ... @@ -15,7 +15,7 @@ angular.module('focaModal')
15 15 function (p) {
16 16 return p;
17 17 }
18   - )
  18 + );
19 19 },
20 20 alert: function (a) {
21 21 return $uibModal.open({
... ... @@ -24,8 +24,8 @@ angular.module('focaModal')
24 24 animation: false,
25 25 backdrop: false,
26 26 resolve: { text: function () { return a; } }
27   - })
  27 + });
28 28 }
29   - }
  29 + };
30 30 }
31 31 ]);