Browse Source

Merge branch 'pr/651'

master
Igor Zhukov 10 years ago
parent
commit
0eb6dcafdf
  1. 1
      app/js/controllers.js
  2. 8
      app/js/directives.js

1
app/js/controllers.js

@ -118,6 +118,7 @@ angular.module('myApp.controllers', ['myApp.i18n']) @@ -118,6 +118,7 @@ angular.module('myApp.controllers', ['myApp.i18n'])
updateCountry();
}
$scope.$broadcast('country_selected');
$scope.$broadcast('value_updated');
}
function updateCountry () {

8
app/js/directives.js

@ -2525,14 +2525,18 @@ angular.module('myApp.directives', ['myApp.filters']) @@ -2525,14 +2525,18 @@ angular.module('myApp.directives', ['myApp.filters'])
});
if (!isDisabled) {
input.on('blur focus', function (e) {
input.on('blur focus change', function (e) {
focused = e.type == 'focus';
element.toggleClass('md-input-focused', focused);
updateHasValueClass();
});
}
$scope.$on('value_updated', function (event, args) {
setZeroTimeout(function () {
updateHasValueClass();
});
});
};
})

Loading…
Cancel
Save