X-Git-Url: https://code.delx.au/comingnext/blobdiff_plain/49b3192bd87d80c776f06b92123c70be34bc2fac..7462eb0578c84056fb0934aa0cbd1acb4873a993:/comingNext/index.html diff --git a/comingNext/index.html b/comingNext/index.html index eaecb85..f30cb7d 100644 --- a/comingNext/index.html +++ b/comingNext/index.html @@ -960,16 +960,21 @@ function updateData() // called by handleOnShow() and onResize events function updateScreen() { - log('updateScreen()'); + log('updateScreen(): mode=' + mode + ', window.innerHeight=' + window.innerHeight); // check if opening fullscreen - if( window.innerHeight > 91 && mode == 0) { + + // Note: according to Nokia's documentation, an innerHeight of >91 is an indicator for fullscreen view. + // However a bug in E6's firmware causes different window widths and heights (disabled compatibility scaling). + // So far, values of 104 and 115 for window.innerHeight were reported, we use a safty margin here and check + // for 150 instead. + if( window.innerHeight > 150 && mode == 0) { mode = 1; cacheEntriesHtml = ''; document.getElementById('body').style.backgroundImage = ""; showFullscreen(); } - else if (window.innerHeight <= 91 && mode != 0) { + else if (window.innerHeight <= 150 && mode != 0) { mode = 0; cacheEntriesHtml = ''; showHomescreen(); @@ -1392,7 +1397,7 @@ function printHintBox(text) { uniqueId++; return '' + getLocalizedText('settings.help') + ''+ - '
' + text + '
'; + ''; } function showAbout() @@ -1779,7 +1784,8 @@ hr { color:#ffffff; background-color:#ffffff; height:1px; text-align:left; borde

Venos (Italian translation)

Francisco Rodero (Catalan translation)

zbigzbig20 (Polish translation)

-

Streamkeskus (Finish translation)

+

Streamkeskus (Finnish translation)

+

renek (Czech translation)

This software is open source and licensed under the GPLv3.

Visit comingnext.sf.net for free updates.