added version number

This commit is contained in:
jeena 2013-08-25 18:08:09 +02:00
parent eed7d9c15c
commit 38c2fae8ac
4 changed files with 12 additions and 1 deletions

View file

@ -59,6 +59,12 @@ function App() {
$(".info.swipe").addClass("hidden");
}
var request = window.navigator.mozApps.getSelf();
request.onsuccess = function() {
$("#version").innerHTML = request.result.manifest.version;
}
};
App.prototype.authenticate = function() {