Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
refactor(alert): clean-up unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
pkozlowski-opensource committed Oct 27, 2013
1 parent ee67a9c commit 4801564
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/alert/alert.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ angular.module("ui.bootstrap.alert", []).directive('alert', function () {
type: '=',
close: '&'
},
link: function(scope, iElement, iAttrs, controller) {
link: function(scope, iElement, iAttrs) {
scope.closeable = "close" in iAttrs;
}
};
Expand Down
2 changes: 1 addition & 1 deletion src/alert/test/alert.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
describe("alert", function () {

var scope, ctrl, model, $compile;
var scope, $compile;
var element;

beforeEach(module('ui.bootstrap.alert'));
Expand Down

0 comments on commit 4801564

Please sign in to comment.