Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/httpmonitor/app/httpMonitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ define([

// These are independent modules. We don't actually need to reference them, but
// they need to be loaded.
"httpmonitor/chrome/infotip",
"httpmonitor/chrome/infoTip",
"httpmonitor/net/netPanel",
"httpmonitor/cache/tabCacheModel",
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ var InfoTip = Obj.extend(Module,
}

if (FBTrace.DBG_INFOTIP)
FBTrace.sysout("infotip.showInfoTip; top: " + infoTip.style.top +
FBTrace.sysout("infoTip.showInfoTip; top: " + infoTip.style.top +
", left: " + infoTip.style.left + ", bottom: " + infoTip.style.bottom +
", right:" + infoTip.style.right + ", offsetHeight: " + infoTip.offsetHeight +
", offsetWidth: " + infoTip.offsetWidth +
Expand Down Expand Up @@ -316,7 +316,7 @@ var InfoTip = Obj.extend(Module,
var fontObject = Fonts.getFontInfo(null, null, fontName.replace(/"/g, ""));

if (FBTrace.DBG_INFOTIP)
FBTrace.sysout("infotip.populateFontFamilyInfoTip;", {fontName: fontName,
FBTrace.sysout("infoTip.populateFontFamilyInfoTip;", {fontName: fontName,
fontObject: fontObject});

var node = this.tags.fontFamilyTag.replace({fontStyles: fontStyles, fontName: fontName,
Expand Down
2 changes: 1 addition & 1 deletion content/httpmonitor/net/netPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ NetPanel.prototype = Obj.extend(Panel,

this.showToolbarButtons("fbNetButtons", false);

delete this.infoTipURL; // clear the state that is tracking the infotip so it is reset after next show()
delete this.infoTipURL; // clear the state that is tracking the infoTip so it is reset after next show()
this.wasScrolledToBottom = Dom.isScrolledToBottom(this.panelNode);

clearInterval(this.layoutInterval);
Expand Down
2 changes: 1 addition & 1 deletion locale/en-US/httpmonitor.properties
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ filter.Images=Images
filter.Flash=Flash

# LOCALIZATION NOTE (failedToPreviewObjectURL, failedToPreviewImageURL):
# Label used in an image preview infotip in the HTML panel when hovering over an <img> element
# Label used in an image preview infoTip in the HTML panel when hovering over an <img> element
# when loading of the given URL fails. The failedToPreviewObjectURL is specifically used
# for moz-filedata (HTML5),
# see: https://developer.mozilla.org/en/Using_files_from_web_applications#Example.3a_Using_object_URLs_to_display_images
Expand Down