Fix feature masks that were broken by

69c18377cf
10.3.x-maintenance
Dominic Clifton 2015-03-29 19:05:59 +01:00
parent 77d608063d
commit 91161ebf94
1 changed files with 2 additions and 1 deletions

View File

@ -113,7 +113,6 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
+ '</td>');
radioGroups.push(features[i].group);
} else {
var feature_e = row_e.find('input.feature');
row_e = $('<tr><td><input class="feature" id="feature-'
+ i
+ '" name="'
@ -128,6 +127,8 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
+ features[i].description
+ '</td>');
var feature_e = row_e.find('input.feature');
feature_e.prop('checked', bit_check(BF_CONFIG.features, features[i].bit));
feature_e.data('bit', features[i].bit);
}