antville/code/Topic/objectFunctions.js
2001-12-16 18:06:13 +00:00

12 lines
No EOL
281 B
JavaScript

/**
* function checks if story is published in topic
* overwrites isStoryOnline-function of day
* @param Obj story to check
* @return Boolean true if online, false if not
*/
function isStoryOnline(st) {
if (parseInt(st.online,10) > 0)
return true;
return false;
}