Merge pull request #174 from tribut/webapp
Install Firefox Webapp from local checkout
This commit is contained in:
commit
6b38be4121
|
@ -788,7 +788,10 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
||||||
};
|
};
|
||||||
$scope.install = function() {
|
$scope.install = function() {
|
||||||
if (navigator.mozApps !== undefined) {
|
if (navigator.mozApps !== undefined) {
|
||||||
var request = navigator.mozApps.install('http://torhve.github.io/glowing-bear/manifest.webapp');
|
// Find absolute url with trailing '/' or '/index.html' removed
|
||||||
|
var base_url = location.protocol + '//' + location.host +
|
||||||
|
location.pathname.replace(/\/(index\.html)?$/, '');
|
||||||
|
var request = navigator.mozApps.install(base_url + '/manifest.webapp');
|
||||||
request.onsuccess = function () {
|
request.onsuccess = function () {
|
||||||
$scope.isinstalled = true;
|
$scope.isinstalled = true;
|
||||||
// Save the App object that is returned
|
// Save the App object that is returned
|
||||||
|
|
Loading…
Reference in New Issue