Add support for FirefoxOS

cordova
Lorenz Hübschle-Schneider 11 years ago
parent a59ef3b7dc
commit b64e363ece
  1. 3
      js/app.js
  2. 8
      manifest.webapp

@ -1,3 +1,6 @@
document.addEventListener('deviceready', function() { document.addEventListener('deviceready', function() {
navigator.splashscreen.hide(); navigator.splashscreen.hide();
}, false); }, false);
// FirefoxOS needs this for :active CSS rules (since it ignores :hover anyway)
document.addEventListener("touchstart", function(){}, true);

@ -1,13 +1,7 @@
{ {
"name": "Glowing Bear", "name": "Glowing Bear",
"description": "WeeChat Web frontend", "description": "WeeChat Web frontend",
"launch_path": "/glowing-bear/index.html", "launch_path": "/index.html",
"icons": {
"128": "/glowing-bear/assets/img/glowing_bear_128x128.png",
"60": "/glowing-bear/assets/img/glowing_bear_60x60.png",
"90": "/glowing-bear/assets/img/glowing_bear_90x90.png",
"32": "/glowing-bear/assets/img/favicon.png"
},
"installs_allowed_from": [ "installs_allowed_from": [
"*" "*"
], ],

Loading…
Cancel
Save