Fix bug 768207 - Make the cache checkbox default-on in the new calendar dialog. r=redDragon

This commit is contained in:
Philipp Kewisch 2015-05-02 18:06:49 +02:00
Родитель 2e21e163d9
Коммит 1d159729fc
2 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -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"/>