Merge branch 'pr/651'

This commit is contained in:
Igor Zhukov 2015-01-15 23:21:08 +03:00
commit 0eb6dcafdf
2 changed files with 7 additions and 2 deletions

View File

@ -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 Normal file → Executable file
View File

@ -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();
});
});
};
})