2001-08-15 09:00:35 +00:00
|
|
|
/**
|
|
|
|
* macro rendering storylist for this day
|
|
|
|
* but check if story is online ...
|
|
|
|
* if not, we only display it when user is also allowed to edit this story!
|
|
|
|
*/
|
|
|
|
|
|
|
|
function storylist_macro() {
|
|
|
|
for (var i=0;i<this.size();i++) {
|
2001-11-18 13:17:59 +00:00
|
|
|
if (this.get(i).isOnline())
|
2001-08-15 09:00:35 +00:00
|
|
|
this.get(i).renderSkin("preview");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|