Hi all 🙂
First post in these forums and just my 3rd app using xCode.
I'm having a bit of a major issue and I've exhausted all possible options that I can think of, so really need some help.
Basically, the issue I'm having is that some pretty important javascript that initialises pretty much everything in my app, which loads in the footer, loads on all simulators, except iOS 9.3 and below.
Just to give a little info on how I'm loading the JS, its just a simple index.html file and loads like this :
<script type="text/javascript" src="/js/app.js"></script>
<script>app.init();</script>
and the start of the app.js file just so you can see the js in there :
'use strict';
var app = function (app) {
app.init = function (msg) {
//the bits im trying to load here
}
...
}
Wondering if there are limitations on the usage of strict, or something else about the way I've coded the js, that is not supported in iOS 9.3? I can't think of how to solve this =(
Any advice appreciated