From b266e9f66ee50c07059d3b962cd2e950d0f4f1b8 Mon Sep 17 00:00:00 2001 From: mhartington Date: Thu, 9 Jun 2016 12:50:00 -0400 Subject: [PATCH] docs(): update docs --- src/config/directives.ts | 1 + src/gestures/drag-gesture.ts | 3 +++ src/gestures/gesture.ts | 1 + 3 files changed, 5 insertions(+) diff --git a/src/config/directives.ts b/src/config/directives.ts index eaa2091cdd7..da423c91686 100644 --- a/src/config/directives.ts +++ b/src/config/directives.ts @@ -44,6 +44,7 @@ import {NavbarTemplate, Navbar} from '../components/navbar/navbar'; import {ShowWhen, HideWhen} from '../components/show-hide-when/show-hide-when'; /** + * @private * @name IONIC_DIRECTIVES * @description * The core Ionic directives as well as Angular's `CORE_DIRECTIVES` and `FORM_DIRECTIVES` are diff --git a/src/gestures/drag-gesture.ts b/src/gestures/drag-gesture.ts index 76ba9084a4f..d94d5b18d08 100644 --- a/src/gestures/drag-gesture.ts +++ b/src/gestures/drag-gesture.ts @@ -1,6 +1,9 @@ import {Gesture} from './gesture'; import {defaults} from '../util'; +/** + * @private + */ export class DragGesture extends Gesture { public dragging: boolean; diff --git a/src/gestures/gesture.ts b/src/gestures/gesture.ts index 0b48ed179c0..99ec6fbf418 100644 --- a/src/gestures/gesture.ts +++ b/src/gestures/gesture.ts @@ -2,6 +2,7 @@ import {defaults, assign} from '../util'; import {Hammer, DIRECTION_HORIZONTAL, DIRECTION_VERTICAL} from './hammer'; /** + * @private * A gesture recognizer class. * * TODO(mlynch): Re-enable the DOM event simulation that was causing issues (or verify hammer does this already, it might);