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
Родитель 7e84bbb4db
Коммит e27d1e4b2b
1 изменённых файлов: 5 добавлений и 0 удалений

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

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