Skip to content

Commit

Permalink
fixed ios build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
greybax committed Apr 17, 2017
1 parent 3a1d33f commit 644cd2a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-native-spinner",
"version": "1.0.7",
"version": "1.0.8",
"description": "A Cordova plugin for showing a progress indicator based on Paldom/SpinnerDialog",
"author": "Aleksandr Filatov",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:amazon="http://schemas.android.com/apk/lib/com.amazon.device.ads"
xmlns:rim="http://www.blackberry.com/ns/widgets"
id="com.greybax.spinnerdialog"
version="1.0.7">
version="1.0.8">

<name>cordova-plugin-native-spinner</name>
<description>
Expand Down
2 changes: 1 addition & 1 deletion src/ios/CDVSpinnerDialog.m
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ - (UIView *)overlay {
_messageView.center = (CGPoint){_overlay.center.x, _overlay.center.y + 40};
_messageView.font = [UIFont fontWithName:@"Helvetica" size:(10.0)];
_messageView.lineBreakMode = UILineBreakModeWordWrap;
_messageView.numberOfLines = 0;lineBreakMode
_messageView.numberOfLines = 0;
[_overlay addSubview:_messageView];

UITapGestureRecognizer *tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapGesture:)];
Expand Down

0 comments on commit 644cd2a

Please sign in to comment.