mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
Removed use of ES6 Set.
This commit is contained in:
parent
129cc92ec9
commit
e7a4900baf
@ -41,9 +41,10 @@ export default createWidget('post-gutter', {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (state.collapsed) {
|
if (state.collapsed) {
|
||||||
var differentTitles = new Set();
|
var differentTitles = [], allTitles = [];
|
||||||
links.forEach(function(x) { differentTitles.add(x.title); });
|
links.forEach(function(x) { allTitles.push(x.title); });
|
||||||
const remaining = differentTitles.size - MAX_GUTTER_LINKS;
|
differentTitles = allTitles.filter(function(item, i, ar){ return ar.indexOf(item) === i; });
|
||||||
|
const remaining = differentTitles.length - MAX_GUTTER_LINKS;
|
||||||
|
|
||||||
if (remaining > 0) {
|
if (remaining > 0) {
|
||||||
result.push(h('li', h('a.toggle-more', I18n.t('post.more_links', {count: remaining}))));
|
result.push(h('li', h('a.toggle-more', I18n.t('post.more_links', {count: remaining}))));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user