@@ -180,7 +180,7 @@ class Test extends React.Component {
180
180
< p className = "sub-title" > </ p >
181
181
< div className = "example-jsx" >
182
182
< div className = "side" >
183
- < a data-for = 'custom-class' data-tip = 'hover on me will keep the tootlip ' > (・ω´・ )</ a >
183
+ < a data-for = 'custom-class' data-tip = 'hover on me will keep the tooltip ' > (・ω´・ )</ a >
184
184
{ /* <a data-for='custom-class' data-tip='' data-tip-disable='true'>empty testing</a> */ }
185
185
< ReactTooltip id = 'custom-class' className = 'extraClass' delayHide = { 1000 } effect = 'solid' />
186
186
</ div >
@@ -192,7 +192,7 @@ class Test extends React.Component {
192
192
< br />
193
193
< pre className = 'example-pre' >
194
194
< div >
195
- < p > { "<a data-tip='hover on me will keep the tootlip '>(・ω´・ )́)</a>\n" +
195
+ < p > { "<a data-tip='hover on me will keep the tooltip '>(・ω´・ )́)</a>\n" +
196
196
"<ReactTooltip className='extraClass' delayHide={1000} effect='solid'/>\n" +
197
197
".extraClass {\n" +
198
198
" font-size: 20px !important;\n" +
@@ -276,15 +276,15 @@ class Test extends React.Component {
276
276
< div className = "side" style = { { overflow : 'auto' , height : '200px' } } >
277
277
< div data-for = 'scrollContent' data-tip data-iscapture = 'true' style = { { width : '5000px' , height : '5000px' } } >
278
278
Scroll me with the mouse wheel.< br />
279
- The tootlip will hide.< br />
279
+ The tooltip will hide.< br />
280
280
Make sure you set data-iscapture="true"
281
281
</ div >
282
282
< ReactTooltip id = 'scrollContent' getContent = { ( ) => Math . floor ( Math . random ( ) * 100 ) } />
283
283
</ div >
284
284
< div className = "side" style = { { overflow : 'auto' , height : '200px' } } >
285
285
< div data-for = 'scrollTime' data-tip data-iscapture = 'true' data-scroll-hide = 'false' style = { { width : '5000px' , height : '5000px' } } >
286
286
Scroll me with the mouse wheel.< br />
287
- The tootlip will stay visible.
287
+ The tooltip will stay visible.
288
288
</ div >
289
289
< ReactTooltip id = 'scrollTime'
290
290
getContent = { [ ( ) => { return new Date ( ) . toISOString ( ) } , 1000 ] } />
0 commit comments