mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
fix for #106917. strict js warnings from msgHdrViewOverlay.js r/sr=mscott
This commit is contained in:
parent
ee9a106589
commit
8516ed2883
@ -96,8 +96,8 @@ var gExpandedHeaderList = [ {name:"subject"},
|
||||
// Now, for each view the message pane can generate, we need a global table of headerEntries. These
|
||||
// header entry objects are generated dynamically based on the static date in the header lists (see above)
|
||||
// and elements we find in the DOM based on properties in the header lists.
|
||||
var gCollapsedHeaderView = {};
|
||||
var gExpandedHeaderView = {};
|
||||
var gCollapsedHeaderView = new Array;
|
||||
var gExpandedHeaderView = new Array;
|
||||
|
||||
// currentHeaderData --> this is an array of header name and value pairs for the currently displayed message.
|
||||
// it's purely a data object and has no view information. View information is contained in the view objects.
|
||||
|
Loading…
Reference in New Issue
Block a user