Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
* [ios] event name to lowercase
  • Loading branch information
lybeen committed May 9, 2017
1 parent b9a1cd0 commit 5d8e5f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/sdk/WeexSDK/Sources/Component/WXListComponent.m
Expand Up @@ -585,8 +585,8 @@ - (void)scrollViewDidScroll:(UIScrollView *)scrollView
if (self.currentTopVisibleSection != topCellPath.section) {
if (self.currentTopVisibleSection) {
WXSection *removeSection = [_sections objectAtIndex:self.currentTopVisibleSection];
if (removeSection.header && [removeSection.header.events containsObject:@"unSticky"]) {
[removeSection.header fireEvent:@"unSticky" params:nil];
if (removeSection.header && [removeSection.header.events containsObject:@"unsticky"]) {
[removeSection.header fireEvent:@"unsticky" params:nil];
}
}
self.currentTopVisibleSection = topCellPath.section;
Expand Down

0 comments on commit 5d8e5f8

Please sign in to comment.