Joe Pea

Results 1897 comments of Joe Pea

I started a new repo specifically for the webpack package, and will call it `rocket:module` on Atmosphere, not referring to webpack so that the underlying tech can be interchangeable. https://github.com/trusktr/rocket-module

I'm aiming to finish the initial feature set by this Sunday, then make current famous-views work with it.

Yeah, this is awesome! :+1:

This is awesome! Can wait to see this with the new ScrollView when it finally comes out.

I tried to describe the problem in a couple issues on famous: https://github.com/Famous/famous/issues/491 https://github.com/Famous/famous/issues/492

In the jsfiddle I posted, the famous-root class gets added automatically when you call createContext on any element. It might not be using the latest Famo.us. Let me double check...

Confirmed, Famo.us 0.3.1 has the same behavior: https://trusktr.io/scrollViewTest When the contexts get created on the divs, `famous-root` gets inevitably added to the `body` and `html` elements. This seems like undesirable...

There must be a way to cancel the events. If you scroll on the first map demo at http://leafletjs.com/ you'll see the map zooms, and the page doesn't scroll. I've...

I just tried it with famous-angular in the Famo.us University, and scrolling a ScrollView doesn't scroll the whole page.

@gadicc Try loading up the Famo.us University, one of the Angular lessons, then for the JavaScript paste this: ``` js angular.module('famous-university', ['famous.angular']) .controller('ScrollCtrl', ['$scope', '$famous', function($scope, $famous) { var EventHandler...