Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. ng-focus="focus=true" ng-blur="focus=false"
  2.  
  3. 10
  4.  
  5. <input type="text" ng-model="textInput" ng-blur="changeDate()">
  6.  
  7. $scope.changeDate = function () {
  8. $scope.textInput = $scope.textInput + '/12/2016';
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement