remove health.js

This commit is contained in:
tophf 2017-04-27 20:31:42 +03:00
parent cff3d13d4b
commit 68d2aeba69

View File

@ -1,14 +0,0 @@
'use strict';
setTimeout(healthCheck, 0);
function healthCheck() {
chrome.runtime.sendMessage({method: 'healthCheck'}, ok => {
if (ok === undefined) {
// Chrome is starting up
healthCheck();
} else if (!ok && confirm(t('dbError'))) {
window.open('http://userstyles.org/dberror');
}
});
}