Bug 1248907 - Remove hard-coded responsive view size to mulet when launching Gaia. r=ochameau

This commit is contained in:
KM Lee 2016-02-18 02:37:00 +01:00
Родитель b924602928
Коммит 9b07a501ff
1 изменённых файлов: 0 добавлений и 10 удалений

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

@ -141,16 +141,6 @@ function initResponsiveDesign() {
// Enable touch events
responsive.enableTouch();
// Automatically toggle responsive design mode
let width = 320, height = 480;
// We have to take into account padding and border introduced with the
// device look'n feel:
width += 15*2; // Horizontal padding
width += 1*2; // Vertical border
height += 60; // Top Padding
height += 1; // Top border
responsive.setSize(width, height);
});