chore(material): migrate most components to TypeScript.
This commit is contained in:
-13
@@ -1,13 +0,0 @@
|
||||
import {Component} from 'angular2/src/core/annotations_impl/annotations';
|
||||
import {View} from 'angular2/src/core/annotations_impl/view';
|
||||
|
||||
@Component({
|
||||
selector: 'md-progress-circular'
|
||||
})
|
||||
@View({
|
||||
templateUrl: 'angular2_material/src/components/progress-circular/progress_circular.html'
|
||||
})
|
||||
export class MdProgressCircular {
|
||||
constructor() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
import {Component, View} from 'angular2/angular2';
|
||||
|
||||
@Component({selector: 'md-progress-circular'})
|
||||
@View({templateUrl: 'angular2_material/src/components/progress-circular/progress_circular.html'})
|
||||
export class MdProgressCircular {
|
||||
constructor() {}
|
||||
}
|
||||
Reference in New Issue
Block a user