Skip to content
Extraits de code Groupes Projets
Valider 5329a8c9 rédigé par Thomas Steur's avatar Thomas Steur
Parcourir les fichiers

when placeholder is changed, show the updated text

parent 0c02f7d0
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -134,6 +134,14 @@
}
});
if ('undefined' !== typeof $scope.placeholder && $scope.placeholder !== null) {
$scope.$watch('placeholder', function (val, oldVal) {
if (val !== oldVal) {
$scope.field.uiControlAttributes.placeholder = val;
}
});
}
$scope.$watch('disabled', function (val, oldVal) {
if (val !== oldVal) {
$scope.field.uiControlAttributes.disabled = val;
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter