Skip to content

Commit

Permalink
release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
architect.bian committed Sep 2, 2016
1 parent 4d2dff0 commit 0f1cd78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Pullable.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default class extends Component {
constructor(props) {
super(props);
this.defaultScrollEnabled = false; //!(this.props.onPulling || this.props.onPullOk || this.props.onPullRelease); //定义onPull***属性时scrollEnabled为false
var topIndicatorHeight = this.props.topIndicatorHeight ? this.props.topIndicatorHeight : defaultTopIndicatorHeight;
let topIndicatorHeight = this.props.topIndicatorHeight ? this.props.topIndicatorHeight : defaultTopIndicatorHeight;
this.defaultXY = {x: 0, y: topIndicatorHeight * -1};
this.pullOkMargin = this.props.pullOkMargin ? this.props.pullOkMargin : pullOkMargin;
this.duration = this.props.duration ? this.props.duration : defaultDuration;
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-pull",
"version": "1.0.13",
"version": "1.1.0",
"description": "PullView & PullList component in React Native for both Android and iOS, pull to refresh",
"main": "index.js",
"scripts": {
Expand All @@ -17,8 +17,7 @@
"pull",
"to",
"refresh",
"React",
"Native",
"React Native",
"ScrollView",
"ListView"
],
Expand Down

0 comments on commit 0f1cd78

Please sign in to comment.