Pierre-Eric Marchandet
Pierre-Eric Marchandet
For the enhancement on the `ContainerSurface` (setting the perspective in the Blade or Jade template), it's done. I've also adapted the `Flipper` example so that it takes advantage of it....
I was thinking of creating an device plugin. An iPhone, for instance. This would be quite useful for demonstrating the RWD features on our landing page (and for any one...
For the `direction` attribute, we have already set up something: https://github.com/gadicc/meteor-famous-views/commit/52e2b5f7e4f55f8b43ec4f5b7af30c141de76d78. This should work out of the box.
`pullToRefreshHeader` and `pullToRefreshFooter` are different beast. They had to known at instantiation of the `FlexScrollView`. I would place them directly as specific attributes to the `FlexScrollView`. These attributes would lead...
Your understanding is 100% right. I was looking for a way to 'tag' a content as sticky header or footer.
Your proposal is better than mine for the sticky headers / footers. No way to do better. Oops, I was thinking of: `template(name='tplRefreshHeader')`... I'm removing my old comment for sticky...
How do you see the injection of the `.isHeader`and `.isFooter`? When the `xyzView` is instantiated, you can't set a member on the object.
Thanks for the insights. It will be even easier and we can achieve reactivity on it. Nice. We have a dilemma on how to provide sticky headers / footers. I...
@IjzerenHein He he, by the way, I wish I know Meteor more, too :wink: @mcbain What do you think of using a callback on the `onViewReady` of the `FlexScrollView`? This...
Bloody simple! Brillant: ``` js FView.registerView('FlexScrollView', FlexScrollView, { add: function(child_fview, child_options) { child_fview.isHeader = child_options.isHeader; this.view.add(child_fview); } }); ``` I think we stil need the famousIf for allowing different famo.us...