-
-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1444 from flexn-io/fix/webos_white_screen
Fix webos white screen
- Loading branch information
Showing
17 changed files
with
252 additions
and
1,354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,5 @@ | ||
<html> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>App Shell</title> | ||
<style> | ||
body { | ||
background-color: white; | ||
} | ||
</style> | ||
{{APPSHELL_HTML_HEADER}} | ||
</head> | ||
|
||
<body style="margin:0px;padding:0px;overflow:hidden"> | ||
<iframe style="margin:0px;padding:0px;overflow:hidden" id="iframe" height="100%" width="100%" frameborder="0" | ||
scrolling="no" allowfullscreen="true"> | ||
</iframe> | ||
<script> | ||
var href = '{{DEV_SERVER}}'; | ||
|
||
setTimeout( function () { | ||
var iframe = document.getElementById( 'iframe' ); | ||
iframe.src = href | ||
iframe.onload = function () { | ||
if ( typeof tizen !== "undefined" ) iframe.contentWindow.tizen = tizen; | ||
if ( typeof webapis !== "undefined" ) iframe.contentWindow.webapis = webapis; | ||
if ( typeof webOS !== "undefined" ) iframe.contentWindow.webOS = webOS; | ||
if ( typeof webOSDev !== "undefined" ) iframe.contentWindow.webOSDev = webOSDev; | ||
} | ||
}, 5000 ); | ||
</script> | ||
</body> | ||
|
||
<head> | ||
<meta http-equiv="refresh" content="0;url={{DEV_SERVER}}" /> | ||
</head> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.