strip www. from block-image contextmenu

This commit is contained in:
noririty%jcom.home.ne.jp 2003-07-29 12:41:36 +00:00
Родитель ccebdd1892
Коммит 1dfc704125
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3023,7 +3023,7 @@ nsContextMenu.prototype = {
var uri = Components.classes['@mozilla.org/network/standard-url;1'].createInstance(Components.interfaces.nsIURI);
uri.spec = this.imageURL;
var shortenedUriHost = uri.host
var shortenedUriHost = uri.host.replace(/^www\./i,"");
if (shortenedUriHost.length > 15)
shortenedUriHost = shortenedUriHost.substr(0,15) + "...";
blockImage.label = gNavigatorBundle.getFormattedString ("blockImages", [shortenedUriHost]);