Bastien de Luca

Results 2 comments of Bastien de Luca

This *dirty* fix make it work on ASFM 1.0.0-alpha.1 with ASF 1.0.0-alpha.4 : ```js $rootScope.$on('sf-render-finished', (event, el) => { $timeout(() => { el[0].querySelectorAll('md-input-container').forEach((input) => { if (angular.element(input).scope().ngModel.$viewValue) { input.classList.add('md-input-has-value'); }...