chore(angular): reverting changes to angular module, cannot figure out why app won't work if it's imported

This commit is contained in:
Dan Bucholtz
2017-11-22 00:49:05 -06:00
parent f96fd86613
commit 5ffb31f49a
9 changed files with 26 additions and 33 deletions

View File

@ -7,8 +7,9 @@ let alertId = 0;
@Injectable()
export class AlertController {
create(opts?: AlertOptions): AlertProxy {
return getAlertProxy(opts);
create(opts?: AlertOptions): any {
// return getAlertProxy(opts);
return { };
}
}