Return-Path: X-Original-To: apmail-cordova-dev-archive@www.apache.org Delivered-To: apmail-cordova-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A8AB7D450 for ; Tue, 30 Oct 2012 08:23:57 +0000 (UTC) Received: (qmail 83496 invoked by uid 500); 30 Oct 2012 08:23:57 -0000 Delivered-To: apmail-cordova-dev-archive@cordova.apache.org Received: (qmail 83293 invoked by uid 500); 30 Oct 2012 08:23:55 -0000 Mailing-List: contact dev-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list dev@cordova.apache.org Delivered-To: moderator for dev@cordova.apache.org Received: (qmail 87187 invoked by uid 500); 30 Oct 2012 02:59:45 -0000 Delivered-To: apmail-incubator-callback-dev@incubator.apache.org X-ASF-Spam-Status: No, hits=2.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_SOFTFAIL X-Spam-Check-By: apache.org Received-SPF: softfail (athena.apache.org: transitioning domain of vincent@mhelpdesk.com does not designate 209.85.160.47 as permitted sender) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type :x-gm-message-state; bh=/T+QysMg58kyaxsVIriCleBYO4XC57DbCPo0em19gJ4=; b=WFA5t1QxXJQTY5bTwQox9P6Uo7v1TlGVtzkZLp16F+gwhiOfnPevmwR/RTJFkZCVqY HovwaKnBXcRBYewFaxhDe0PrDQANOJJR9HKboB5Y/M+I47MzLq+PQ3t0hmfFfgvjMfXc 8c2vk+qPiSbm+emVfkzjwrdDPxxYCc4yH5GrRTlTYER3bsYi4j1y5St+WO0/9f+63clJ LwEyAneynDNY9jM1/MLzhsMmfrfcjPK2LxR0JTT6nuTZ0m03zDR8LV85bp9O3w4NuqsV pKy2dwjAEcWk8VqwCqsnnCKopNYWmOvUzVF7gglc1R5Q7VghYU2/XHJnRrO02Pw4XBs5 xF4A== MIME-Version: 1.0 Date: Mon, 29 Oct 2012 22:59:17 -0400 Message-ID: Subject: Cordova 2.1 shows the wrong splash screen for a split second From: Vincent Wong To: callback-dev@incubator.apache.org Content-Type: multipart/alternative; boundary=e89a8ff1c85cc97b3f04cd3df825 X-Gm-Message-State: ALoCoQknoCweePl8N4gRsXxwu0CdFPm4oh3V58iCe4anghG1c8p5zIe+qGQe5xIz3ueXCyT61Umu X-Virus-Checked: Checked by ClamAV on apache.org --e89a8ff1c85cc97b3f04cd3df825 Content-Type: text/plain; charset=ISO-8859-1 I have updated all my splash screens to show my own. I also set AutoHideSplashScreen to false. I've added: document.addEventListener("deviceready", onDeviceReady, false); function onDeviceReady() { //console.log("We got device ready"); //cordova.exec(null, null, "SplashScreen", "hide", []); // Soon to be navigator.splashscreen.hide(); } The correct splash screen shows for 1 second. The the default Cordova splash shows for another second before my app is loaded. How do I prevent the default Cordova splash from showing? --e89a8ff1c85cc97b3f04cd3df825--