2017-03-18 06:05:11 -05:00
|
|
|
import CONFIG from './config';
|
|
|
|
|
|
|
|
export default function() {
|
|
|
|
fetch(CONFIG.apiUrl + '/meta', {
|
|
|
|
method: 'POST'
|
|
|
|
}).then(res => {
|
|
|
|
res.json().then(meta => {
|
|
|
|
if (meta.version != VERSION) {
|
|
|
|
localStorage.setItem('should-refresh', 'true');
|
2017-04-01 13:35:34 -05:00
|
|
|
alert('%i18n:common.update-available%'.replace('{newer}', meta.version).replace('{current}', VERSION));
|
2017-03-18 06:05:11 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|