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:
authormattab <matthieu.aubry@gmail.com>2014-01-23 01:09:22 +0400
committermattab <matthieu.aubry@gmail.com>2014-01-23 01:09:22 +0400
commit23bd9b791b64cdc4abf8ce55ad4ad0fa2a342245 (patch)
treea75b47f81ff1fa13c99f1916c05ac17b3a2fef7b /plugins/Annotations/javascripts/annotations.js
parent7f6509cf7fe1a924358815e753216ff736f73c49 (diff)
Rename annotations icons + adding two missing icons refs #4457
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 628d9f2ea1..85b70f070c 100755
--- a/plugins/Annotations/javascripts/annotations.js
+++ b/plugins/Annotations/javascripts/annotations.js
@@ -459,9 +459,9 @@
// modify the starred count & make sure the correct image is used
var newStarCount = starredCount + starAmt;
if (newStarCount > 0) {
- var newImg = 'plugins/Zeitgeist/images/yellow_marker.png';
+ var newImg = 'plugins/Zeitgeist/images/annotations_starred.png';
} else {
- var newImg = 'plugins/Zeitgeist/images/grey_marker.png';
+ var newImg = 'plugins/Zeitgeist/images/annotations.png';
}
$(this).attr('data-starred', newStarCount).find('img').attr('src', newImg);