File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,19 @@ tooltip-class="" | String() | false | Set custom tooltip CSS class/classes
93
93
tooltip-size="" | String('large', 'small') | 'medium' | Set your tooltip dimensions
94
94
tooltip-speed="" | String('fast', 'slow', 'medium') | 'medium' | Set your tooltip show & hide transition speed
95
95
96
+ ##Globals
97
+ Sometimes you may need to set all of your tooltips options in one place, you can achieve this using ` tooltipConfProvider ` like this:
98
+
99
+ ``` javascript
100
+ .config ([' tooltipsConfProvider' , function configConf (tooltipsConfProvider ) {
101
+ tooltipsConfProvider .configure ({
102
+ ' smart' : true ,
103
+ ' size' : ' large' ,
104
+ ' speed' : ' slow'
105
+ });
106
+ }])
107
+ ```
108
+
96
109
## Example
97
110
98
111
###[ Live demo] ( https://720kb.github.io/angular-tooltips )
You can’t perform that action at this time.
0 commit comments