clean up js files

This commit is contained in:
Adam Bradley
2015-07-03 13:51:34 -05:00
parent 6ab57f916d
commit 90d6564c10
20 changed files with 277 additions and 1099 deletions

View File

@ -1,21 +0,0 @@
import {Component, Directive} from 'angular2/src/core/annotations_impl/annotations';
import {IonicView} from 'ionic/ionic';
@Component({ selector: 'ion-app' })
@IonicView({
templateUrl: 'main.html'
})
class IonicApp {
constructor() {
console.log('IonicApp Start')
}
doRefresh() {
console.log('DOREFRESH')
}
}
export function main(ionicBootstrap) {
ionicBootstrap(IonicApp);
}