Files
Adam Bradley c136d2143a alert wip
2015-12-23 23:11:40 -06:00

18 lines
337 B
TypeScript

import {Directive} from 'angular2/core';
/**
* @private
*/
@Directive({
selector: 'ion-overlay'
})
export class OverlayNav {
constructor() {
// deprecated warning
console.warn('<ion-overlay> is no longer needed and can be safely removed.');
console.warn('See the v2 docs for an update on how overlays work.');
}
}