aboutsummaryrefslogtreecommitdiff
path: root/data/assets/js/admin/tabs/posts.js
diff options
context:
space:
mode:
Diffstat (limited to 'data/assets/js/admin/tabs/posts.js')
-rw-r--r--data/assets/js/admin/tabs/posts.js9
1 files changed, 2 insertions, 7 deletions
diff --git a/data/assets/js/admin/tabs/posts.js b/data/assets/js/admin/tabs/posts.js
index 1cabc31..96d3a3c 100644
--- a/data/assets/js/admin/tabs/posts.js
+++ b/data/assets/js/admin/tabs/posts.js
@@ -85,12 +85,7 @@ jQuery(function($) {
],
});
- var POST_TYPE_ICONS = {
- blog: 'fa-sticky-note-o',
- page: 'fa-bookmark-o',
- project: 'fa-cube',
- };
-
+ // FIXME: move this to DATA as well?
var POST_STATES = {
draft: {
css: 'bg-warning',
@@ -154,7 +149,7 @@ jQuery(function($) {
return TEMPLATES.run('post', $.extend(row, {
css: css,
label: label,
- icon: POST_TYPE_ICONS[row.post_type],
+ icon: DATA.post_types[row.post_type].icon,
post_url: post_url,
}));
}).join(''));