Fix typos

This commit is contained in:
Tankred Hase 2015-01-12 14:50:58 +01:00
parent d41ed34837
commit fb0454142c
2 changed files with 8 additions and 10 deletions

View File

@ -2,15 +2,13 @@
chrome.app.runtime.onLaunched.addListener(function() { chrome.app.runtime.onLaunched.addListener(function() {
chrome.runtime.getPlatformInfo(function() { // open chrome app in new window
// open chrome app in new window chrome.app.window.create('index.html', {
chrome.app.window.create('index.html', { id: '0',
id: '0', innerBounds: {
innerBounds: { width: 1280,
width: 1280, height: 800
height: 800 }
}
});
}); });
}); });

View File

@ -29,7 +29,7 @@
<!-- theme color --> <!-- theme color -->
<meta name="theme-color" content="#00c6ff"> <meta name="theme-color" content="#00c6ff">
<!-- standard web ap manifest --> <!-- standard web app manifest -->
<link rel="manifest" href="webapp.json"> <link rel="manifest" href="webapp.json">
<!-- Viewport and styles --> <!-- Viewport and styles -->