Fix expand switch (bug 792150)

This commit is contained in:
Matt Basta 2012-09-20 16:46:04 -07:00
Родитель 186691986b
Коммит 6903fc53fd
1 изменённых файлов: 2 добавлений и 5 удалений

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

@ -60,7 +60,7 @@
$(e.target).closest('.confirm-action').removeClass('show');
}));
var expandListings = false;
var expandListings = localStorage.getItem('expand-listings') === 'true';
var $expandToggle = $('#site-header .expand');
// Toggle app listing graphical/compact view.
@ -71,10 +71,7 @@
z.page.on('fragmentloaded', function() {
if (z.body.data('page-type') === 'search') {
expandListings = localStorage.getItem('expand-listings') === 'true';
if (expandListings) {
setTrays(true);
}
setTrays(expandListings);
}
});