Bug 697975 - Don't show the first-run animation in tablet mode [r=mfinkle]

This commit is contained in:
Matt Brubeck 2011-10-29 15:05:39 -07:00
Родитель 8f3f216863
Коммит df85001523
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -408,7 +408,7 @@
// If a sidebar is completely open, just bail
let [leftWidth, rightWidth] = win.Browser.computeSidebarVisibility();
if (leftWidth == 1 || rightWidth == 1) {
if (leftWidth == 1 || rightWidth == 1 || win.Util.isTablet()) {
endDiscovery();
return;
}