Fix a JS error by providing get access to a feed item's date

This commit is contained in:
scott%scott-macgregor.org 2005-02-11 02:18:28 +00:00
Родитель 43d36a73c5
Коммит 6401bb0c44
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -126,6 +126,11 @@ FeedItem.prototype =
this.mURL = uri.spec;
},
get date()
{
return this.mDate;
},
set date (aVal)
{
this.mDate = aVal;