Skip to content

Commit d87b877

Browse files
author
Ian Redpath
committed
removed images since IMDB doesn't let me use them
1 parent 26744dc commit d87b877

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

public/project/components/movies/movie.view.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf='!fetchingMovie' class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2">
22
<h1 class="movie-title">{{movie.title}}</h1>
33
<div class="col-sm-4 col-md-5">
4-
<img *ngIf="movie.image !== 'N/A'" class="movie-image" src={{movie.image}}>
4+
<img *ngIf="movie.image !== 'N/A'" class="movie-image" src="">
55
<div>
66
<button class="btn btn-small" (click)="addMovie()">+</button>
77
<span class="glyphicon glyphicon-star"></span>

public/project/components/movies/movies.view.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<h1>Movies</h1>
33
<ul>
44
<li *ngFor="#movie of movies" class="movie-li">
5-
<img *ngIf="movie.image !== 'N/A'" class={{movie.imdbId}} src={{movie.image}}>
5+
<img *ngIf="movie.image !== 'N/A'" class={{movie.imdbId}} src="">
66
<label attr.for={{movie.imdbId}} [routerLink]="['/Movie', { movie: movie.imdbId }]">
77
{{movie.title}}
88
</label>

public/project/components/search/results.view.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="!fetchingResults" class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2">
22
<ul>
33
<li *ngFor="#movie of results.movies" class="movie-li">
4-
<img *ngIf="movie.image !== 'N/A'" class={{movie.imdbId}} src={{movie.image}}>
4+
<img *ngIf="movie.image !== 'N/A'" class={{movie.imdbId}} src="">
55
<label attr.for={{movie.imdbId}} [routerLink]="['/Movie', { movie: movie.imdbId }]">
66
{{movie.title}}
77
</label>

0 commit comments

Comments
 (0)