MagicMirror/js/version/version.js
2015-10-19 01:30:24 -04:00

31 lines
533 B
JavaScript

var version = {
updateInterval: 600000,
intervalId: null
}
version.checkVersion = function () {
$.ajax({
type: 'GET',
url: 'githash.php',
success: function (data) {
// The githash variable is located in index.php
if (data && data.gitHash !== gitHash) {
window.location.reload();
window.location.href = window.location.href;
}
},
error: function () {
}
});
}
version.init = function () {
this.intervalId = setInterval(function () {
this.checkVersion();
}.bind(this), this.updateInterval);
}