Skip to content

Commit

Permalink
Fix incorrect event name
Browse files Browse the repository at this point in the history
Fixes #65
  • Loading branch information
a14n committed Dec 24, 2018
1 parent 6cec4c1 commit df2e53a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/src/core/mvc/mvcarray.dart
Expand Up @@ -57,12 +57,12 @@ abstract class _MVCArray<E> extends MVCObject {
Stream<int> get onInsertAt => getStream(this, 'insert_at');
Stream<IndexAndElement<E>> get onRemoveAt => getStream(
this,
'click',
'remove_at',
(int index, oldElement) =>
IndexAndElement<E>(index, _codec.decode(oldElement)));
Stream<IndexAndElement<E>> get onSetAt => getStream(
this,
'click',
'set_at',
(int index, oldElement) =>
IndexAndElement<E>(index, _codec.decode(oldElement)));
}
Expand Down
4 changes: 2 additions & 2 deletions lib/src/google_maps_src.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit df2e53a

Please sign in to comment.