Skip to content

Commit

Permalink
Merge branch 'release/0.1.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Chambaud committed Mar 25, 2015
2 parents 52a478e + ae5435f commit d44b59b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions angular-displayable-password.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function displayablePassword() {

'<label for="display-password" title="{{isVisible ? labelVisible : labelHidden}}">{{isVisible ? labelVisible : labelHidden}}</label>' +
'</div>',
controller: function($scope) {
controller: ['$scope', function($scope) {
$scope.isVisible = true;
$scope.notifier = function(viewValue) {
return $scope.visiblePassword = viewValue;
Expand All @@ -50,7 +50,7 @@ function displayablePassword() {
$scope.$watch('visiblePassword', function(v){
$scope.password = v;
})
}
}]
}
}

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-displayable-password",
"version": "0.1.5",
"version": "0.1.6",
"homepage": "https://github.com/mchambaud/angular-displayable-password",
"authors": [
"Michael Chambaud <[email protected]>"
Expand Down

0 comments on commit d44b59b

Please sign in to comment.