Closed
Bug 323057
Opened 20 years ago
Closed 20 years ago
js strict warnings in calendar-month-view.xml and calendar-multiday-view.xml
Categories
(Calendar :: Sunbird Only, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: ssitter, Assigned: ssitter)
Details
Attachments
(1 file, 1 obsolete file)
|
2.25 KB,
patch
|
jminta
:
first-review+
|
Details | Diff | Splinter Review |
During startup of Sunbird I get the following javascript strict warnings:
Warning: function set_selectedItem does not always return a value
Source File: chrome://calendar/content/calendar-multiday-view.xml
Line: 1952, Column: 7
Warning: function get_selectedDay does not always return a value
Source File: chrome://calendar/content/calendar-month-view.xml
Line: 608, Column: 7
As I'm tired of that I'll send a patch.
| Assignee | ||
Comment 1•20 years ago
|
||
Assignee: mostafah → ssitter
Status: NEW → ASSIGNED
Attachment #208210 -
Flags: first-review?(jminta)
Comment 2•20 years ago
|
||
Comment on attachment 208210 [details] [diff] [review]
patch
return (this.mSelectedItem = val);
+ } else {
+ return val;
Mozilla style guidelines say that when an 'if' returns, the superfluous 'else' should be omitted.
Attachment #208210 -
Flags: first-review?(jminta) → first-review-
| Assignee | ||
Comment 3•20 years ago
|
||
Changed the method to use only one return point, might also help to avoid confusion if that assignment was intended or not.
Attachment #208210 -
Attachment is obsolete: true
Attachment #208301 -
Flags: first-review?(jminta)
Comment 4•20 years ago
|
||
Comment on attachment 208301 [details] [diff] [review]
patch, v2
very nice. r=jminta
Attachment #208301 -
Flags: first-review?(jminta) → first-review+
Comment 5•20 years ago
|
||
patch checked in
Status: ASSIGNED → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
Comment 6•20 years ago
|
||
verified with
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9a1) Gecko/20060909 Calendar/0.3a2+
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•