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:
authorThomas Steur <thomas.steur@googlemail.com>2014-05-23 02:01:04 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-05-23 02:01:04 +0400
commit63b596a9044825185e0eeac1974e21dccac9967c (patch)
tree9a09fa9b4396af54f146b409d2a40ee219b6bcde /plugins/Annotations/javascripts/annotations.js
parent99d70f99068b110b33eafb09946769e3b0be6811 (diff)
started experiment making morpheus default theme
Diffstat (limited to 'plugins/Annotations/javascripts/annotations.js')
-rwxr-xr-xplugins/Annotations/javascripts/annotations.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Annotations/javascripts/annotations.js b/plugins/Annotations/javascripts/annotations.js
index 4aac660f59..f25a993833 100755
--- a/plugins/Annotations/javascripts/annotations.js
+++ b/plugins/Annotations/javascripts/annotations.js
@@ -460,9 +460,9 @@
// modify the starred count & make sure the correct image is used
var newStarCount = starredCount + starAmt;
if (newStarCount > 0) {
- var newImg = 'plugins/Zeitgeist/images/annotations_starred.png';
+ var newImg = 'plugins/Morpheus/images/annotations_starred.png';
} else {
- var newImg = 'plugins/Zeitgeist/images/annotations.png';
+ var newImg = 'plugins/Morpheus/images/annotations.png';
}
$(this).attr('data-starred', newStarCount).find('img').attr('src', newImg);