From 68d2aeba69395768a7d7ee7264a361470eb0b23b Mon Sep 17 00:00:00 2001 From: tophf Date: Thu, 27 Apr 2017 20:31:42 +0300 Subject: [PATCH] remove health.js --- health.js | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 health.js diff --git a/health.js b/health.js deleted file mode 100644 index ac1dc96c..00000000 --- a/health.js +++ /dev/null @@ -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'); - } - }); -}