Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsgiehl <stefan@piwik.org>2013-04-23 11:01:40 +0400
committersgiehl <stefan@piwik.org>2013-04-23 11:01:40 +0400
commitccaa67edfc5edd1b3b04bbbfbd4be0d51575ae9c (patch)
treedd5d03b16897e375e5fa020c2fbcee948e9d9f2b /plugins/UserCountry
parentb5067e0f1c106f6d6cae2415eaf67052c96d5ace (diff)
fixed small js error occuring if geoip download failed
Diffstat (limited to 'plugins/UserCountry')
-rwxr-xr-xplugins/UserCountry/templates/admin.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserCountry/templates/admin.js b/plugins/UserCountry/templates/admin.js
index 1bb3d22d76..69857b7294 100755
--- a/plugins/UserCountry/templates/admin.js
+++ b/plugins/UserCountry/templates/admin.js
@@ -116,7 +116,7 @@ $(document).ready(function () {
function (response) {
if (response.error) {
// on error, show error & stop downloading
- $('#' + thisId).fadeOut(1000, function () {
+ $('#geoipdb-screen2-download').fadeOut(1000, function () {
$('#manage-geoip-dbs').html(response.error);
});
}