more styling for disabled options

new "Developer" tab (by default all options are disabled, users can't modify them)
fixed UserprefsDisallow export in setup script
This commit is contained in:
Crack
2010-07-22 01:29:36 +02:00
parent 7b0135ed6a
commit 7ac7e24d8c
12 changed files with 119 additions and 46 deletions

View File

@@ -183,6 +183,9 @@ $(function() {
return;
}
var el = $(this).find('input');
if (el.attr('disabled')) {
return;
}
el.attr('checked', !el.attr('checked'));
});
});