Fixes to the Option interface

(1) Fixed hintPosition and hintButtonLabel to make them optional.
(2) Made steps optional since it is not required by the intro.js library.
This commit is contained in:
Steve Mayes
2016-02-27 20:22:58 -05:00
parent e5c72c986c
commit 4315d16fd5
+3 -3
View File
@@ -29,9 +29,9 @@ declare module IntroJs {
overlayOpacity?: number;
positionPrecedence?: string[];
disableInteraction?: boolean;
hintPosition: string;
hintButtonLabel: string;
steps: Step[];
hintPosition?: string;
hintButtonLabel?: string;
steps?: Step[];
}
interface IntroJs {