Bug 1849221 - Create XULSTORE setting for Quick Filter keep filters applied. r=freaktechnik

- Create XULSTORE setting that can be persisted

Differential Revision: https://phabricator.services.mozilla.com/D186494

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Elizabeth Mitchell 2023-08-25 03:47:56 +00:00
Родитель dba3e4f799
Коммит 8a2a696dff
1 изменённых файлов: 10 добавлений и 0 удалений

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

@ -108,6 +108,16 @@ var quickFilterBar = {
this.triggerQFTRovingTab(event);
});
}
document.getElementById("qfb-sticky").addEventListener("click", event => {
let stickyValue = event.target.pressed ? "true" : "false";
Services.xulStore.setValue(
XULSTORE_URL,
"quickFilterBarSticky",
"enabled",
stickyValue
);
});
},
/**