Update check
This commit is contained in:
parent
5e98635237
commit
aba73a08c6
@ -91,20 +91,24 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
var request = navigator.mozApps.getInstalled();
|
var request = navigator.mozApps.getInstalled();
|
||||||
request.onsuccess = function() {
|
request.onsuccess = function() {
|
||||||
var update;
|
|
||||||
var selfApp = navigator.mozApps.getSelf();
|
|
||||||
selfApp.onsuccess = function() {
|
|
||||||
if( this.result ) update = true;
|
|
||||||
else update = false;
|
|
||||||
}
|
|
||||||
selfApp.onsuccess = function() {
|
|
||||||
update = false;
|
|
||||||
}
|
|
||||||
var app = this.result[0];
|
var app = this.result[0];
|
||||||
if( !app ) {
|
var latest = $.ajax({url:'manifest-web.webapp'});
|
||||||
if( update ) confirm('A new version is available, do you want to update?')
|
latest.onsuccess = function() {
|
||||||
else confirm('Do you want to Install this app?');
|
if( this.response ) {
|
||||||
|
var lapp = JSON.parse(this.response);
|
||||||
|
if( lapp.version != app.manifest.version &&
|
||||||
|
confirm('A new version of this app is available, do you want to update?')) {
|
||||||
|
var ins = navigator.mozApps.install('http://mdibaiee.github.io/Sketchy/Web/manifest-web.webapp');
|
||||||
|
ins.onsuccess = function() {
|
||||||
|
alert('The app was installed successfuly');
|
||||||
|
}
|
||||||
|
ins.onerror = function() {
|
||||||
|
alert('There was an error installing app')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if( !app && confirm('Do you want to Install this app?') ) {
|
||||||
var ins = navigator.mozApps.install('http://mdibaiee.github.io/Sketchy/Web/manifest-web.webapp');
|
var ins = navigator.mozApps.install('http://mdibaiee.github.io/Sketchy/Web/manifest-web.webapp');
|
||||||
ins.onsuccess = function() {
|
ins.onsuccess = function() {
|
||||||
alert('The app was installed successfuly');
|
alert('The app was installed successfuly');
|
||||||
|
Loading…
Reference in New Issue
Block a user