Skip to content

Commit

Permalink
Merge pull request #7744 from hieupham007/timob-20410-5_2_X
Browse files Browse the repository at this point in the history
[TIMOB-20410](5_2_X): Backport
  • Loading branch information
ashcoding committed Feb 17, 2016
2 parents e72b2b5 + 0396c8f commit 8e28ccf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -919,6 +919,12 @@ protected void handleFocus()
}
}

public TiBlob toImage()
{
//backward compat with maps
return toImage(null);
}

@Kroll.method
public TiBlob toImage(final @Kroll.argument(optional=true) KrollFunction callback)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ public Fragment getFragment()
return fragment;
}

public boolean handleMessage (Message msg) {
//overwriting so descendents don't have to
return true;
}

protected boolean interceptTouchEvent(MotionEvent ev)
{
return false;
Expand Down
Binary file not shown.

0 comments on commit 8e28ccf

Please sign in to comment.