Nuxt JS website does not load on only iPhone, working fine everywhere else - iphone

No problem with Android and other browsers, even safari. But the problem of loading on only iPhone devices. There is no error on the console. Simply called API and showed some data from response

Related

Android webview link not working in React Native

I have implemented a WebView in React Native. The web page will have input fields and based on the data we entered it redirects to another page.
It is working fine in iOS but not in Android.
After clicking on a component in WebView I am able to see the url change and params of the url in iOS but in Android the url is not getting changed.
Any help please.

Colorbox Crashing When Viewed As Mobile App

I have installed and configured the Colorbox Module for Drupal on my mobile site. Everything works correctly, except when a user opens the site from their homescreen in an iPhone. The Colorbox opens briefly, then closes. This does not occur when a user is viewing the mobile version of the site on their iPhone in Safari. It only happens after they have added it to their homescreen and view it through that.
Turns out the following script was causing the error. This script prevents links from opening in Mobile Safari. https://gist.github.com/1042026
<script>(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(d.href.indexOf("http")||~d.href.indexOf(e.host))&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone")</script>

How to open app from Puffin browser

I wish to play flash content in iPad app so i searched lot then finally i came to know Puffin browser will play flash content.
In my app when user tapping a button the app redirected to puffin browser then it will play the flash content. then again if try to re-open my app from puffin browser i could not re-open it.
I created URL Scheme for my app. after completion of flash video, i tried to open my app by using myApp:// in puffin browser but it does not re-open my app. if try same way in safari its working.
Please help me
External URL opening will be supported in the next version. Do you mean you want to manually type "MyApp://SomeUrl" in Puffin and then open MyApp with SomeUrl? Is your app free to download? I'd like to give it a trial.
ps: I work in CloudMosa which sells Puffin.
Maybe a bit late, but there a several documentated URL Schemes on the Puffin Developer Page: https://www.puffinbrowser.com/development/
Puffin Browser for iOS handles the following URL Schemes.
puffin for http
puffins for https
puffin-x-callback for callbacks back to calling app (iOS after version 3.5)
i.E. use instead of https://www.google.de the Url puffins://www.google.de to open https://www.google.de in the Puffin Browser.
Unfortunately currently workin only for the not longer maintained iOS Versions Puffin and Puffin Pro. The new browser Puffin Lite has afaik no documentated URL Schemes or does it?

Mobile Redirect Script not redirecting Safari

This is the mobile redirect script I use. For some reason it does not redirect Safari for the iPhone. I added in |safari| just as you see |blackberry| but it redirects Google Chrome, even on a computer. Does anyone have any advice to get Safari to work on this code or a seperate code that works independantly on Safari that I could add in?
<script type="text/javascript">// <![CDATA[
var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
if (mobile) {document.location = "http://www.grossmag.com/mobi";}
// ]]></script>
The redirect worked. It was the site I was working on that was causing the issue. It was built in Joomla 2.5 and had a built in redirect for iPhones and was never getting to my redirect. I uninstalled the Joomla mobile plugin and it allowed users to be redirected to the mobile site I had built.

Facebook Comments Box mobile version not resizing

I am integrating a like button and a comment box (mobile) inside a web view in iOS (Using Facebook social plugins). I got it to work a few days ago but today, for some strange reason, it won't work correctly. When the user has not logged in, it looks almost fine:
But once I am logged in, and the UIWebView detects the Facebook cookie, it won't load correctly. The loading icon is misplaced, and it won't stop, no errors appear, no web is being loaded (checked with UIWebView delegate methods), the Comment button won't be loaded and the frame won't change its height to see more comments...
If I load this URL externally from Safari, iOS Safari will load the webpage correctly!
If I force loading the normal version (not the mobile one) the comments are loaded correctly!
What am I missing?
Ok, solved...
It seems you have to force the login in https://m.facebook.com/login.php for some weird reason..... (not https://www.facebook.com)
They may have added this restriction now :\