Skip to content

Commit 5a663d0

Browse files
committed
revert some deletion
1 parent d721715 commit 5a663d0

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

MJRefresh.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'MJRefresh'
3-
s.version = '3.6.0'
3+
s.version = '3.6.1'
44
s.summary = 'An easy way to use pull-to-refresh'
55
s.homepage = 'https://github.com/CoderMJLee/MJRefresh'
66
s.license = 'MIT'

MJRefresh/MJRefreshConst.h

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ UIKIT_EXTERN const CGFloat MJRefreshLabelLeftInset;
3333
UIKIT_EXTERN const CGFloat MJRefreshHeaderHeight;
3434
UIKIT_EXTERN const CGFloat MJRefreshFooterHeight;
3535
UIKIT_EXTERN const CGFloat MJRefreshTrailWidth;
36+
UIKIT_EXTERN const CGFloat MJRefreshFastAnimationDuration;
37+
UIKIT_EXTERN const CGFloat MJRefreshSlowAnimationDuration;
38+
3639

3740
UIKIT_EXTERN NSString *const MJRefreshKeyPathContentOffset;
3841
UIKIT_EXTERN NSString *const MJRefreshKeyPathContentSize;

MJRefresh/MJRefreshConst.m

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
const CGFloat MJRefreshHeaderHeight = 54.0;
66
const CGFloat MJRefreshFooterHeight = 44.0;
77
const CGFloat MJRefreshTrailWidth = 60.0;
8+
const CGFloat MJRefreshFastAnimationDuration = 0.25;
9+
const CGFloat MJRefreshSlowAnimationDuration = 0.4;
10+
811

912
NSString *const MJRefreshKeyPathContentOffset = @"contentOffset";
1013
NSString *const MJRefreshKeyPathContentInset = @"contentInset";

0 commit comments

Comments
 (0)