Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
236d67f78d
1 changed files with 13 additions and 6 deletions
|
@ -814,12 +814,19 @@ module.directive('kcReadOnly', function() {
|
|||
var d = {
|
||||
replace : false,
|
||||
link : function(scope, element, attrs) {
|
||||
if (scope.$eval(attrs.kcReadOnly)) {
|
||||
element.find('input').attr('disabled', 'disabled');
|
||||
element.find('button').attr('disabled', 'disabled');
|
||||
element.find('select').attr('disabled', 'disabled');
|
||||
element.find('textarea').attr('disabled', 'disabled');
|
||||
}
|
||||
scope.$watch(attrs.kcReadOnly, function(readOnly, oldValue) {
|
||||
if (readOnly) {
|
||||
element.find('input').attr('disabled', 'disabled');
|
||||
element.find('button').attr('disabled', 'disabled');
|
||||
element.find('select').attr('disabled', 'disabled');
|
||||
element.find('textarea').attr('disabled', 'disabled');
|
||||
} else {
|
||||
element.find('input').removeAttr('disabled');
|
||||
element.find('button').removeAttr('disabled');
|
||||
element.find('select').removeAttr('disabled');
|
||||
element.find('textarea').removeAttr('disabled');
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
return d;
|
||||
|
|
Loading…
Reference in a new issue