John Callahan wrote:
> Thanks David.  Very cool and very quick!  
>
> For #2, you can use unordered lists for the paging controls. You see 
> it in menu systems like Suckerfish/Superfish where the styling 
> determines if the bullets are present, the items are laid out 
> vertically or horizontally, spacing, etc...    For a paging list, just 
> see the bottom of http://drupal.org/.  (some basic info here 
> http://mirificampress.com/permalink/the_amazing_li)
>
> I'm not saying this is the preferred way to go or even a recommended 
> thing to try.  It definitely requires more styling.  It may be better 
> for screen readers.., not sure.   Just something to think about...
>
>
> So, to use blank spaces between page numbers instead of bullets, is 
> all I need to do is set the following after loading exhibit-api.js?
> Exhibit.TabularView.l10n.pageSeparator = " ";
>   
>
> Again, thanks for adding these features.
I've just updated trunk so that you can use ul / li if you wish. You'd 
need 3 lines of code:

Exhibit.OrderedViewFrame.l10n.pagingControlContainerElement = "ul";
Exhibit.OrderedViewFrame.l10n.pagingControlElement = "li";
Exhibit.OrderedViewFrame.l10n.pageSeparator = "";

The default styles should already make the ul/li mode look like on 
drupal.org. Note that the tabular view now uses these same settings (of 
OrderedViewFrame), so you can override the same setting for all tile 
view, thumbnail view, and tabular view.

David


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to