You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use a status bar plugin that hides/shows the status bar to fix iOS7 issues and this plugin doesn't work if the status bar is initially hidden. The fix for it however, is really simple.
In the .js file I replaced line 6 with the following:
setTimeout(function () { exec(null, null, "TapToScroll", "initListener",[]); }, 250);
This gives the status bar plugin time to show itself before initializing the tap plugin.
The text was updated successfully, but these errors were encountered:
O actually its easier than that on the objc side we use status bar layer
and positioning when we add our tap detection window we could just infer
that rather than wait for status bar
I use a statusbar plugin that hides/shows the status bar to fix iOS7 issues
and this plugin doesn't work if the statusbar is initially hidden. The fix
for it however, is really simple.
In the .js file I replaced line 6 with the following:
setTimeout(function () { exec(null, null, "TapToScroll",
"initListener",[]); }, 250);
This gives the statusbar plugin time to show itselfe before initializing
the tap plugin.
—
Reply to this email directly or view it on
GitHubhttps://github.com//issues/10
.
I use a status bar plugin that hides/shows the status bar to fix iOS7 issues and this plugin doesn't work if the status bar is initially hidden. The fix for it however, is really simple.
In the .js file I replaced line 6 with the following:
setTimeout(function () { exec(null, null, "TapToScroll", "initListener",[]); }, 250);
This gives the status bar plugin time to show itself before initializing the tap plugin.
The text was updated successfully, but these errors were encountered: