Fixed typo and added a missing default property

This commit is contained in:
Robert Mulder
2015-06-09 10:07:27 +02:00
parent 31ce460184
commit 30c8088847
+8 -1
View File
@@ -590,7 +590,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 {