Story.getNavigationName () |
Return either the title of the story or
the id prefixed with standard display name
to be used in the global linkedpath macro
|
Sourcecode in Story/objectFunctions.js:
1: function getNavigationName () { 2: if (this.title) 3: return this.title; 4: return DISPLAY["story"] + " " + this._id; 5: } |