You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default the throttling function is actually a [debounce](https://lodash.com/docs#debounce) function so that the checking function is only triggered after a user stops scrolling. To use traditional throttling where it will only check the loadable content every `throttle` milliseconds, set `debounce` to `false`.
101
101
102
-
### height
103
-
Type: `String|Number` Default: `100`
102
+
####height
103
+
Type: `String|Number`
104
104
105
-
This is used to set the elements height even when it has no content.
105
+
The `height` option allows you to set the element's height even when it has no content.
106
106
107
-
### onContentVisible
107
+
#### width
108
+
Type: `String|Number`
109
+
110
+
The `width` option allows you to set the element's width even when it has no content.
111
+
112
+
#### onContentVisible
108
113
Type `Function`
109
114
110
-
A callback function to execute when the content appears on the screen.
115
+
A callback function to execute when the content appears on the screen.
0 commit comments