Hi
i'm struggling with this basic code :
<html data-ng-app=""> <head> <title>Title</title> <meta charset="UTF-8" /> <script src="js/angular.min.js" type="text/javascript"> </script> </head> <body> <div data-ng-init="names = ['Jack', 'John', 'Tina']"> <h1>Cool loop!</h1> <ul> <li data-ng-repeat="name in names">{{name}}</li> </ul> </div> </body> </html>
It wotks perfectly in the emulator but not im my samsung Z3
Thanks