Robert Biggs

Results 21 comments of Robert Biggs

Well, technically that shouldn't be an issue. For example the segmented paging control is in the navbar and manages the panels fine. It looks like you entered markup in your...

Thanks for the pull request. From looking at your additions, it appears you're adding support to make the tab bar function like a navigation list. According to Apple Human Interface...

Actually, I'm working on a sample app that demonstrates a perfume/cologne sales app with list, navigation, detail views, shopping cart, etc. Just to show how to put a complete app...

Hmmm... I see that in iOS5 mobile Safari is trying to be smart and scroll up when the input gets focus, causing the focus to switch to the input below....

Actually, I just noticed that in landscape mode on my iPhone 4S it's less problematic to enter data in the inputs. Less space for mobile Safari to try to scroll.

Actually, the UISlider control is only in the regular ChocolateChip-UI version. When I did the jQuery port, I left it out since jQuery already has many really good plugins for...

I put a page in the Wiki to explain how to use the HTML5 range input.

Since I handle dynamic widgets through conditional rendering, I'm not sure an unmount is really necessary any more. Using a boolean flag to render or not render a widget makes...

@van-nguyen, here a simple example. ```jsx import { h, patch } from 'superfine' let isLoggedIn = true function UserGreeting(props) { return Welcome back! } function GuestGreeting(props) { return Please sign...

I'm wondering if maybe we could change the order of parameters for `patch` with the `node` argument last. That way, for the first render you could just do this: ```jsx...