You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
618 B
24 lines
618 B
<!doctype html>
|
|
<html lang="en" ng-app='OMDBApp'>
|
|
<head>
|
|
</head>
|
|
<body ng-controller="AppCtrl">
|
|
<h1>Awesome Movie DB Site</h1>
|
|
<form ng-submit="search()">
|
|
<input ng-model="query" type="text" />
|
|
</form>
|
|
|
|
<ul ng-hide="movies.length == 0">
|
|
<li ng-repeat="movie in movies" ng-click="showDescription(movie.imdbID)">{{movie.Title}}</li>
|
|
</ul>
|
|
<div ng-hide="result == null">
|
|
{{result.Title}}, {{result.Year}}
|
|
<p>
|
|
{{result.Plot}}
|
|
</p>
|
|
</div>
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.12/angular.min.js"></script>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html> |