Revert "clip max displayed counter value to 9999 because of container node width"

This reverts commit c34a4c85bd.
This commit is contained in:
Andrew Dolgov 2021-03-23 11:51:17 +03:00
parent c34a4c85bd
commit e3c51b0e6c
2 changed files with 4 additions and 7 deletions

View File

@ -140,7 +140,7 @@ class Pref_Feeds extends Handler_Protected {
}
foreach (array(-4, -3, -1, -2, 0, -6) as $i) {
array_push($cat['items'], $this->feedlist_init_feed($i, false, 0));
array_push($cat['items'], $this->feedlist_init_feed($i));
}
/* Plugin feeds for -1 */

View File

@ -3,7 +3,6 @@
/* global __, App, Headlines, xhr, dojo, dijit, fox, PluginHost, Notify, fox */
const Feeds = {
_max_counter_value: 9999,
_default_feed_id: -3,
counters_last_request: 0,
_active_feed_id: undefined,
@ -70,7 +69,7 @@ const Feeds = {
const id = elems[l].id;
const kind = elems[l].kind;
const ctr = Math.min(this._max_counter_value, parseInt(elems[l].counter));
const ctr = parseInt(elems[l].counter);
const error = elems[l].error;
const has_img = elems[l].has_img;
const updated = elems[l].updated;
@ -91,10 +90,8 @@ const Feeds = {
}*/
this.setUnread(id, (kind == "cat"), ctr);
this.setValue(id, (kind == "cat"), 'auxcounter',
Math.min(this._max_counter_value, parseInt(elems[l].auxcounter)));
this.setValue(id, (kind == "cat"), 'markedcounter',
Math.min(this._max_counter_value, parseInt(elems[l].markedcounter)));
this.setValue(id, (kind == "cat"), 'auxcounter', parseInt(elems[l].auxcounter));
this.setValue(id, (kind == "cat"), 'markedcounter', parseInt(elems[l].markedcounter));
if (kind != "cat") {
this.setValue(id, false, 'error', error);