Bootstrap 4.alpha2 + iOS

a simple

meteor create bs4
meteor add twbs:bootstrap

Then

meteor run ios

Then adding any bootstrap markup gets rendered perfectly on the desktop and iOS

When I do the same with bootstrap 4 though, and use:

  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css"> 
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/js/bootstrap.min.js"></script

(due to lack of a meteor package)

The desktop renders perfectly. But iOS, all CSS is stripped out.

Has anyone come across this ?

Thanks.

further playing, seems like a precedence of order issue.

as to when the code is (or in this case) isn’t loaded.

I would assume that given it’s part of the header of the main page though … that it should still pull down the css and js, but doesn’t look that’s the case when run through iOS.

any suggestions welcome.