Merge pull request #554 from mozilla/fix/broken-filter-selection

Fix #542: send correct event to update ui from prefs when ready
This commit is contained in:
monicachew 2014-04-23 16:26:47 -07:00
Родитель 8848575170 6448db233a
Коммит 51f4903fdd
2 изменённых файлов: 2 добавлений и 3 удалений

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

@ -467,7 +467,7 @@ function updateUIFromPrefs(event) {
console.error("NO viz");
}
}
// This is not working quite
if ("defaultFilter" in event) {
aggregate.currentFilter = event["defaultFilter"];
document.querySelector('a[data-value=' + aggregate.currentFilter + ']')

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

@ -180,8 +180,7 @@ function attachToLightbeamPage(worker) {
}
function onUIReady() {
console.log("passing stored connections");
worker.port.emit("setPrefs", prefs);
worker.port.emit("updateUIFromPrefs", prefs);
worker.port.emit("passStoredConnections", getAllConnections());
}