Update cron schedule for candidate release check to run on Tuesday at 4:59 AM

This commit is contained in:
mr. M
2025-01-28 00:33:01 +01:00
parent 1c59a6d461
commit 188fea025d
6 changed files with 59 additions and 50 deletions

View File

@@ -212,6 +212,31 @@ var gZenVerticalTabsManager = {
return this.__topButtonsSeparatorElement;
},
animateTab(aTab) {
if (!gZenUIManager.motion) {
return;
}
const isLastTab = aTab.nextElementSibling === null;
gZenUIManager.motion.animate(
aTab,
{
opacity: [0, 1],
transform: ['translateY(-20px)', 'translateY(0px)'],
marginBottom: isLastTab ? [] : ['-20px', '0px'],
},
{
duration: 0.2,
type: 'spring',
bounce: 0,
}
).then(() => {
aTab.style.removeProperty('margin-bottom');
aTab.style.removeProperty('transform');
aTab.style.removeProperty('opacity');
aTab.style.removeProperty('filter');
});
},
get actualWindowButtons() {
// we have multiple ".titlebar-buttonbox-container" in the DOM, because of the titlebar
if (!this.__actualWindowButtons) {