Editbox on mobile requires two taps to gain focus

Hi all,

My main screen has two editboxes and I’ve noticed that whichever is clicked first requires two taps before gaining focus on the web build in order to register and popout phone keyboard

This issue is not present on my debug generated web-build

SOLVED: Had to delete the below fullscreen code in the generated main.

cc.view.enableAutoFullScreen([
cc.sys.BROWSER_TYPE_BAIDU,
cc.sys.BROWSER_TYPE_WECHAT,
cc.sys.BROWSER_TYPE_MOBILE_QQ,
cc.sys.BROWSER_TYPE_MIUI,
].indexOf(cc.sys.browserType) < 0);`

This was solved by the OP! Copying solution here to mark as solved