Kai Sellgren
Kai Sellgren
When in the middle of an animation the target element dies, the lib throws.
Support for animating colors (hex, rgb and rbga) is needed. We also should support text-shadow animations.
Similar to find(), add support for remove() with a query. ``` dart objectory[Foo].remove(where.eq('foo', 'bar')) ```
The following code does not work: `where.oneFrom('foo', list.map((e) => e.something));` You have to call `.toList()`. Let's add support for iterables: http://api.dartlang.org/docs/releases/latest/dart_core/Iterable.html#map
http://docs.mongodb.org/manual/reference/method/db.collection.distinct/ We also need this in Mongo Dart: https://github.com/vadimtsushko/mongo_dart/issues/30
It would be nice if I could call a single method or getter on query object that returns a string that I can print to console and directly copy-paste to...
The `match()` method has the parameter `caseInsensitive`. Can we make this the same as Dart SDK's RegExp constructor, which has a `caseSensitive` parameter? I find myself constantly specifying the wrong...
It would be fantastic if we could have something like: ``` dart $Foo.fetchLinks(exclude: ['bar']) ``` And it would fetch all links as normal except for the ones specified.