Update code to take in account suggestions.

This commit is contained in:
Nathanael Anderson
2015-09-09 19:35:31 -05:00
parent 9dffb57bcb
commit e184308169
2 changed files with 9 additions and 8 deletions

View File

@ -37,7 +37,7 @@ export class HtmlView extends common.HtmlView {
this._ios.editable = false;
this._ios.selectable = true;
this._ios.userInteractionEnabled = true;
this._ios.dataDetectorTypes = 255; // Future Proof this; valid max in iOS is currently 15; however ALL = MAX UNSIGNED INT which isn't valid in JavaScript
this._ios.dataDetectorTypes = UIDataDetectorTypes.UIDataDetectorTypeAll;
}
get ios(): UITextView {