Merge pull request #4584 from robbaman/typo-and-missing-member-fix

Fixed typo and added a missing default property
This commit is contained in:
Masahiro Wakame
2015-06-14 19:15:40 +09:00
+8 -1
View File
@@ -595,7 +595,14 @@ declare module angular.ui.bootstrap {
*
* @default false
*/
appendtoBody?: boolean;
appendToBody?: boolean;
/**
* Determines the default open triggers for tooltips and popovers
*
* @default 'mouseenter' for tooltip, 'click' for popover
*/
trigger?: string;
}
interface ITooltipProvider {