Remove explicit imports for NgIf/NgFor/NgClass, as that's no longer needed

This commit is contained in:
SteveSandersonMS
2016-01-26 11:20:57 +00:00
parent ea4c668a63
commit 5e5b12dc54
10 changed files with 12 additions and 23 deletions

View File

@@ -1,13 +1,11 @@
import * as ng from 'angular2/core';
import { NgIf } from 'angular2/common';
import * as models from '../../../models/models';
@ng.Component({
selector: 'album-delete-prompt'
})
@ng.View({
templateUrl: './ng-app/components/admin/album-delete-prompt/album-delete-prompt.html',
directives: [NgIf]
templateUrl: './ng-app/components/admin/album-delete-prompt/album-delete-prompt.html'
})
export class AlbumDeletePrompt {
public album: models.Album;