10 lines
241 B
JavaScript
10 lines
241 B
JavaScript
/**
|
|
* Return either the title of the story or
|
|
* the id prefixed with standard display name
|
|
* to be used in the global linkedpath macro
|
|
* @see hopobject.getNavigationName()
|
|
*/
|
|
function getNavigationName () {
|
|
return this.groupname;
|
|
}
|
|
|