What steps will reproduce the problem?
1. Create an IUI HTML page without .toolbar
Crashes on load.
The code in updatePage():
var pageTitle = $("pageTitle");
if (page.title)
pageTitle.innerHTML = page.title;
var ttlClass = page.getAttribute("ttlclass");
pageTitle.className = ttlClass ? ttlClass : "";
Can be slightly modified:
if (page.title){
pageTitle.innerHTML = page.title;
var ttlClass = page.getAttribute("ttlclass");
pageTitle.className = ttlClass ? ttlClass : "";
}
That solves it, the rest is easy to override in CSS.
Original issue reported on code.google.com by san0f...@gmail.com on 22 Sep 2011 at 10:29
Original issue reported on code.google.com by
san0f...@gmail.com
on 22 Sep 2011 at 10:29