removed tags

v1.18.x
barisusakli 10 years ago
parent 729fb1d696
commit a14249dee6

@ -102,10 +102,6 @@
border-color: #949FB1; border-color: #949FB1;
background-color: #A8B3C5; background-color: #A8B3C5;
} }
&.tags {
border-color: #FDB45C;
background-color: #8FA633;
}
} }
} }
} }

@ -283,13 +283,8 @@ define('admin/general/dashboard', ['semver'], function(semver) {
color: "#949FB1", color: "#949FB1",
highlight: "#A8B3C5", highlight: "#A8B3C5",
label: "Recent/Unread" label: "Recent/Unread"
}, }
{ ], {
value: 1,
color: "#8FA633",
highlight: "#3FA7B8",
label: "Tags"
}], {
responsive: true responsive: true
}); });
@ -356,7 +351,6 @@ define('admin/general/dashboard', ['semver'], function(semver) {
graphs.presence.segments[1].value = users.topics; graphs.presence.segments[1].value = users.topics;
graphs.presence.segments[2].value = users.category; graphs.presence.segments[2].value = users.category;
graphs.presence.segments[3].value = users.recent; graphs.presence.segments[3].value = users.recent;
graphs.presence.segments[4].value = users.tags;
graphs.presence.update(); graphs.presence.update();
} }

@ -89,7 +89,6 @@ SocketMeta.rooms.getAll = function(socket, data, callback) {
users: { users: {
categories: roomClients.categories ? roomClients.categories.length : 0, categories: roomClients.categories ? roomClients.categories.length : 0,
recent: roomClients.recent_posts ? roomClients.recent_posts.length : 0, recent: roomClients.recent_posts ? roomClients.recent_posts.length : 0,
tags: roomClients.tags ? roomClients.tags.length : 0,
topics: 0, topics: 0,
category: 0 category: 0
}, },

@ -115,7 +115,6 @@
<li><div class="reading-posts"></div><span>Reading posts</span></li> <li><div class="reading-posts"></div><span>Reading posts</span></li>
<li><div class="browsing-topics"></div><span>Browsing topics</span></li> <li><div class="browsing-topics"></div><span>Browsing topics</span></li>
<li><div class="recent"></div><span>Recent / Unread</span></li> <li><div class="recent"></div><span>Recent / Unread</span></li>
<li><div class="tags"></div><span>Tags</span></li>
</ul> </ul>
<canvas id="analytics-presence"></canvas> <canvas id="analytics-presence"></canvas>
</div> </div>

Loading…
Cancel
Save