Skip to content

Commit

Permalink
Merge pull request #5276 from srahim/timob-16312
Browse files Browse the repository at this point in the history
[TIMOB-16312]iOS : Just handle all links if handleLinksSet is false
  • Loading branch information
pec1985 committed Jan 28, 2014
2 parents dc07d21 + 9030d7f commit bfaeaa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iphone/Classes/TiUITextArea.m
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ - (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRan
if (handleLinksSet) {
return handleLinks;
} else {
return [[UIApplication sharedApplication] canOpenURL:URL];
return YES;
}
}

Expand Down

0 comments on commit bfaeaa7

Please sign in to comment.