зеркало из https://github.com/mozilla/pjs.git
Enable/disable customize button
This commit is contained in:
Родитель
e4e624f8da
Коммит
da04d396e9
|
@ -173,14 +173,17 @@ function enableButtons() {
|
|||
down.setAttribute('disabled', '');
|
||||
}
|
||||
// "Customize..." button
|
||||
var customizeURL = '';
|
||||
var customizeURL = null;
|
||||
if (index != -1) {
|
||||
var option = list.childNodes.item(index);
|
||||
customizeURL = option.getAttribute('customize');
|
||||
}
|
||||
if (customizeURL == '') {
|
||||
dump("customize="+customizeURL+"\n");
|
||||
if (customizeURL == 'null') {
|
||||
dump("...so disable it\n");
|
||||
customize.setAttribute('disabled','true');
|
||||
} else {
|
||||
dump("...enable\n");
|
||||
customize.setAttribute('disabled','');
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче