Fix bug 768207 - Make the cache checkbox default-on in the new calendar dialog. r=redDragon
This commit is contained in:
Родитель
2e21e163d9
Коммит
1d159729fc
|
@ -82,8 +82,10 @@ function onSelectProvider(type) {
|
|||
cache.checked = true;
|
||||
cache.disabled = true;
|
||||
} else {
|
||||
cache.checked = cache.oldValue || false;
|
||||
cache.oldValue = null;
|
||||
if (cache.oldValue !== undefined) {
|
||||
cache.checked = cache.oldValue;
|
||||
cache.oldValue = undefined;
|
||||
}
|
||||
cache.disabled = false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -71,6 +71,7 @@
|
|||
<row>
|
||||
<label/>
|
||||
<checkbox id="cache"
|
||||
checked="true"
|
||||
label="&calendarproperties.cache3.label;"/>
|
||||
</row>
|
||||
<notificationbox id="location-notifications" flex="1"/>
|
||||
|
|
Загрузка…
Ссылка в новой задаче