summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--install/ui/widget.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/install/ui/widget.js b/install/ui/widget.js
index 4ddff81f9..ff7759747 100644
--- a/install/ui/widget.js
+++ b/install/ui/widget.js
@@ -660,7 +660,6 @@ IPA.checkboxes_widget = function (spec) {
that.options = spec.options || [];
that.direction = spec.direction || 'vertical';
- that.mutex = spec.mutex;
that.create = function(container) {
@@ -695,15 +694,6 @@ IPA.checkboxes_widget = function (spec) {
var input = $('input[name="'+that.name+'"]', that.container);
input.change(function() {
-
- var checkbox = $(this);
- var checked = checkbox.is(':checked');
-
- if (that.mutex && checked) {
- that.clear();
- checkbox.attr('checked', true);
- }
-
that.value_changed.notify([that.save()], that);
});