Site.getTitle () |
function returns the title of a site |
Sourcecode in Site/objectFunctions.js:
1: function getTitle() { 2: if (this.title && this.title.trim()) 3: return stripTags(this.title); 4: else 5: return "[" + getMessage("generic.untitled") + "]"; 6: } |