From 75d552690b4a640f3b7213846fcbcbb4e48c2118 Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Mon, 26 Sep 2016 14:38:10 +0200 Subject: [PATCH] fix(ion-fixed): ion-fixed directive is not longer needed --- src/components/fixed/fixed.ts | 13 ------------- src/directives.ts | 3 --- 2 files changed, 16 deletions(-) delete mode 100644 src/components/fixed/fixed.ts diff --git a/src/components/fixed/fixed.ts b/src/components/fixed/fixed.ts deleted file mode 100644 index acd6e66545..0000000000 --- a/src/components/fixed/fixed.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { Directive } from '@angular/core'; - -/** - * @name Fixed - * @module ionic - * @description - */ -@Directive({ - selector: 'ion-fixed' -}) -export class Fixed { - -} diff --git a/src/directives.ts b/src/directives.ts index acfc683681..7fd7053f99 100644 --- a/src/directives.ts +++ b/src/directives.ts @@ -12,7 +12,6 @@ import { Chip } from './components/chip/chip'; import { Content } from './components/content/content'; import { DateTime } from './components/datetime/datetime'; import { FabContainer, FabButton, FabList } from './components/fab/fab'; -import { Fixed } from './components/fixed/fixed'; import { Grid, Row, Col } from './components/grid/grid'; import { Icon } from './components/icon/icon'; import { Img } from './components/img/img'; @@ -81,7 +80,6 @@ export { Chip } from './components/chip/chip'; export { Content } from './components/content/content'; export { DateTime } from './components/datetime/datetime'; export { FabContainer, FabButton, FabList } from './components/fab/fab'; -export { Fixed } from './components/fixed/fixed'; export { Grid, Row, Col } from './components/grid/grid'; export { Icon } from './components/icon/icon'; export { Img } from './components/img/img'; @@ -176,7 +174,6 @@ export const IONIC_DIRECTIVES: any[] = [ FabContainer, FabButton, FabList, - Fixed, Footer, Grid, Header,