I can’t get ng-repeat to work on anything other than a <li> or <item> tag. If it’s in a div, span, p, or anything else, it doesn’t visually display (although inspecting the source in the browser shows it is in fact there).
How do i get ng-repeat to work properly. What part of ionic overwrites or mess with that functionality?
So I dove into my SASS and started deleting blocks of code and seeing which caused the undesired effect. And it came down to a web font declaration for an element font: 18px 'googlewebfont';
Disabling the font in the developer console on the browser allowed it to display the div properly; re-enabling the font via console did not reproduce the error again. (ie i just clicked the css property check box to turn it off (fixed), on (didn’t break)). But when refreshing or rendering the page it would break.
The 1px border is a fix to get it working for now; but pretty strange.