Merge pull request #1219 from jygaulier/PHRAS-271

fix #PHRAS-343
This commit is contained in:
Nicolas Le Goff
2015-01-28 14:56:42 +01:00
2 changed files with 9 additions and 6 deletions

View File

@@ -760,9 +760,9 @@ $(document).ready(function () {
var $this = $(this);
var $record_types = $('#recordtype_sel');
if ($this.hasClass('mode_type_reg')) {
$record_types.attr('disabled', true);
$record_types.hide();
} else {
$record_types.removeAttr('disabled');
$record_types.show();
}
});