default to show pretty graphical search results on desktop

This commit is contained in:
Chris Van 2012-09-20 18:00:59 -07:00
Родитель 6903fc53fd
Коммит 4659d84035
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -60,7 +60,12 @@
$(e.target).closest('.confirm-action').removeClass('show');
}));
var expandListings = localStorage.getItem('expand-listings') === 'true';
var expandListingsStored = localStorage.getItem('expand-listings');
if (expandListingsStored) {
expandListings = localStorage.getItem('expand-listings') === 'true'
} else {
expandListings = z.capabilities.desktop;
}
var $expandToggle = $('#site-header .expand');
// Toggle app listing graphical/compact view.