Issue 11: Once toggleView/disableToolbar is run the toggleview-button no longer can enableToolbar.
Status:  Fixed
Owner:
Closed:  Nov 2008
Cc:
Reported by nickolas...@gmail.com, Nov 5, 2008
Revision 61:
line 295: item.addClass('onActive');

should perhaps read;
line 295: item.addClass('active');

so that the checks in "buildToolbar" (line 214) do not stop the click event.

Thanks cheeaun, keep up the good work.

Cheers
Nick.

Nov 5, 2008
Project Member #1 TJLeahy...@gmail.com
The problem seems to be on line 214, not 295:

R61-214: if (!this.hasClass('disabled') && !this.hasClass('onActive')) {

Fix-214: if (!this.hasClass('disabled')) {
Status: Started
Owner: TJLeahy.Jr
Labels: Usability
Nov 5, 2008
Project Member #2 TJLeahy...@gmail.com
Fixed in R62.  Tested in IE and FF 3
Status: Fixed
Cc: cheeaun