diff options
| author | root <root@kabir-PC> | 2016-03-30 12:40:16 +0200 |
|---|---|---|
| committer | root <root@kabir-PC> | 2016-03-30 12:40:16 +0200 |
| commit | 750dcc61ceff516a9233cc10dc138a9c898a61f6 (patch) | |
| tree | a90e51b9358db869fdefd0d111465799c945563f /client/Test/index.html | |
| parent | 804fa322d841d73ee7592885ec500dc94e91b9e6 (diff) | |
mettre les private pour la classe network coté serveur et mes premières essaie pour angularjs notamement extraction des donnée
Diffstat (limited to 'client/Test/index.html')
| -rw-r--r-- | client/Test/index.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/client/Test/index.html b/client/Test/index.html new file mode 100644 index 0000000..147745c --- /dev/null +++ b/client/Test/index.html @@ -0,0 +1,19 @@ +<head> + +<script src="../vendors/angularjs/angular.min.js"></script> + <script src="../vendors/angularjs/angular-route.min.js"></script> + <script src="../vendors/angularjs/angular-sanitize.min.js"></script> + <script src="../vendors/angularjs/angular-cookies.min.js"></script> + <script src="../js/services/Test.js"></script> + <script src="../js/app.js"></script> +</head> + +<body ng-app="mainApp"> + <div ng-controller="hassan"> + <ul> + <li ng-repeat="person in persons"> + {{person.Name + ' : ' + person.Age}} + </li> + </ul> + </div> +</body> |
