Closed
Bug 595193
Opened 15 years ago
Closed 15 years ago
Remove unnecessary zero new notification indicator on badges
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: aaronmt, Assigned: mfinkle)
Details
(Whiteboard: [Fennec2.0bTestday])
Attachments
(2 files)
|
69.19 KB,
image/jpeg
|
Details | |
|
3.25 KB,
patch
|
vingtetun
:
review+
|
Details | Diff | Splinter Review |
Mozilla/5.0 (Android; Linux armv7l; rv:2.0b6pre) Gecko/20100910 Firefox/4.0b6pre Fennec/2.0b1pre
Until there is an actual notification, a badge will present itself on the Awesome-Screen with a [0] new notification indicator. See screenshot.
This should be removed and only display a badge when there is an actual indicator.
| Assignee | ||
Comment 1•15 years ago
|
||
This patch cleans up the code a bit, makes some helpers so we don't duplicate too much code in the handlers, and ignores "[0]" badges.
Assignee: nobody → mark.finkle
Attachment #474086 -
Flags: review?(21)
Comment 2•15 years ago
|
||
Comment on attachment 474086 [details] [diff] [review]
patch
>+
>+ setNumberBadge: function(aItem, aValue) {
>+ if (parseInt(aValue) != 0) {
>+ aValue = BadgeHandlers.clampBadge(aValue);
You could probably use "this" instead of BadgeHandlers
>+ aItem.setAttribute("badge", aValue);
>+ } else {
>+ aItem.removeAttribute("badge");
>+ }
As seen on IRC I still think we need to wrap the item but this is an other bug.
Attachment #474086 -
Flags: review?(21) → review+
Comment 3•15 years ago
|
||
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Comment 4•14 years ago
|
||
This issue doesn't occur anymore on the latest Nightly build.
Verified fixed on:
Mozilla/5.0 (Android;Linux armv7l;rv:9.0a1)Gecko/20110914
Firefox/9.0a1 Fennec/9.0a1
Device: Samsung Galaxy S
OS: Android 2.2
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•