Dan Schultz

Results 18 comments of Dan Schultz

@jonaskello that's sort of my thinking as well. On the other hand, `Signal` is a bit academic.

> One thing to be aware of is that frappe is currently usable outside the browser. Should not be an issue as long as you're careful what goes where Yup,...

Or you could prefix _window_ and _mouse_ using classes inside `html.dart`... ``` dart // html.dart library frappe.html; class WindowProperties { final Property innerBounds = new Property(...); } final window =...

Here's what I'm thinking: ``` dart class Property extends Reactable { Property._(Stream stream, bool hasInitialValue, [T initialValue]) { ... } Property(Stream stream) => this._(stream, false); Property.withInitialValue(T initialValue, Stream stream) =>...

Adding a generic for the return type was actually the first path I went down :) But, I ran into an issue with it, can't remember what though. I agree,...

I created ticket #41 for tracking the move of implementation methods to `Reactable`.

I created ticket #42 for adding public non-factory constructors to `Property`.

This a common paradigm with Drag and Drop APIs. Off the top of my head, Java Swing, Flex, and HTML5 support behavior like this.