summaryrefslogtreecommitdiff
path: root/plugins/digest
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-12-25 14:01:33 +0400
committerAndrew Dolgov <[email protected]>2012-12-25 14:01:33 +0400
commitc2167866ce1b6388c4049b6b8224ea4ecaf6427b (patch)
treeee4fdbb7abd651b6327d54c2d0592ef92b540360 /plugins/digest
parent65d1e2501b4af1b28330d438c0e0dc08e77c7b5a (diff)
move mark/pub/feed icons to svg
Diffstat (limited to 'plugins/digest')
-rw-r--r--plugins/digest/digest.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/digest/digest.js b/plugins/digest/digest.js
index 522d35453..a9b3508c7 100644
--- a/plugins/digest/digest.js
+++ b/plugins/digest/digest.js
@@ -252,14 +252,14 @@ function view(article_id) {
}
if (article.marked)
- mark_part = "<img title='"+ __("Unstar article")+"' onclick=\"toggle_mark(this, "+article.id+")\" src='images/mark_set.png'>";
+ mark_part = "<img title='"+ __("Unstar article")+"' onclick=\"toggle_mark(this, "+article.id+")\" src='images/mark_set.svg'>";
else
- mark_part = "<img title='"+__("Star article")+"' onclick=\"toggle_mark(this, "+article.id+")\" src='images/mark_unset.png'>";
+ mark_part = "<img title='"+__("Star article")+"' onclick=\"toggle_mark(this, "+article.id+")\" src='images/mark_unset.svg'>";
if (article.published)
- publ_part = "<img title='"+__("Unpublish article")+"' onclick=\"toggle_pub(this, "+article.id+")\" src='images/pub_set.png'>";
+ publ_part = "<img title='"+__("Unpublish article")+"' onclick=\"toggle_pub(this, "+article.id+")\" src='images/pub_set.svg'>";
else
- publ_part = "<img title='"+__("Publish article")+"' onclick=\"toggle_pub(this, "+article.id+")\" src='images/pub_unset.png'>";
+ publ_part = "<img title='"+__("Publish article")+"' onclick=\"toggle_pub(this, "+article.id+")\" src='images/pub_unset.svg'>";
var tmp = "<div id=\"inner\">" +
"<div id=\"ops\">" +
@@ -385,10 +385,10 @@ function get_feed_icon(feed) {
return getInitParam('icons_url') + "/" + feed.id + '.ico';
if (feed.id == -1)
- return 'images/mark_set.png';
+ return 'images/mark_set.svg';
if (feed.id == -2)
- return 'images/pub_set.png';
+ return 'images/pub_set.svg';
if (feed.id == -3)
return 'images/fresh.png';