IBM Worklight 5.0.6.1 - Dolna biała przestrzeń w systemie iOS 7

Jak widać, na dole mojej strony pozostaje białe pole. Jego wysokość jest taka sama, jak starego paska stanu, który był obecny w ios6. Czy muszę modyfikować css? Ponieważ nigdy nie ustaliłem wysokości dla mojej aplikacji, Worklight zawsze wybierał odpowiedni rozmiar.

EDYTUJ: musisz zapisać obraz i otworzyć na pulpicie z innym kolorem, aby zobaczyć białą przestrzeń na dole.

*
 *  Licensed Materials - Property of IBM
 *  5725-G92 (C) Copyright IBM Corp. 2011, 2013. All Rights Reserved.
 *  US Government Users Restricted Rights - Use, duplication or
 *  disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
 */

// This method is invoked after loading the main HTML and successful initialization of the Worklight runtime.
function wlEnvInit(){
    wlCommonInit();
    // Environment initialization code goes here
}

//Wait for Cordova to load
//
document.addEventListener("deviceready", onDeviceReady, false);

// Cordova is ready
//
function onDeviceReady() {
    alert(device.version);
    if(device.version > "6.0")
        $(".elmecHeader").css("height", "70px");
}

questionAnswers(3)

yourAnswerToTheQuestion