Skip to content

Commit

Permalink
Write the most basic app that will run on WebOS
Browse files Browse the repository at this point in the history
  • Loading branch information
booch committed Sep 9, 2012
1 parent fafccf2 commit 78f0ed6
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
19 changes: 19 additions & 0 deletions appinfo.json
@@ -0,0 +1,19 @@
{
"title": "BoochReader",
"version": "0.0.1",
"id": "com.boochtek.reader",
"vendor": "BoochTek, LLC",
"vendorurl": "http://www.boochtek.com",
"type": "web",
"uiRevision": "2",
"main": "index.html",
"noDeprecatedStyles": true,
"icon": "icons/medium.jpg",
"miniicon": "icons/small.jpg",
"keywords": ["feed reader", "RSS", "feeds", "reader", "Twitter", "Google Reader"],
"noWindow": false,
"plug-ins": false,
"tapToShareSupported": false,
"theme": "light",
"dockMode": true
}
19 changes: 19 additions & 0 deletions index.html
@@ -0,0 +1,19 @@
<!doctype html>
<html>
<head>
<title>BoochReader</title>

<!-- Tell WebOS that we're done loading and initializing. -->
<script type="text/javascript">
if ( window.PalmSystem ) {
document.addEventListener('DOMContentLoaded', function(){
PalmSystem.stageReady();
});
}
</script>
</head>
<body>
<h1>This app does nothing!</h1>
<h2>But it does run on WebOS!</h1>
</body>
</html>

0 comments on commit 78f0ed6

Please sign in to comment.