# Options
## readyTransition
- Type: `boolean`
- Default: `true`
Determines if a loading indicator will be displayed while waiting for the site to initialize, followed by a fade transition after initialization is complete.
**Example**
```javascript
window.$docsify = {
// ...
themeable: {
readyTransition: true // default
}
}
```
## responsiveTables
- Type: `boolean`
- Default: `true`
Determines if `
` elements will be displayed as responsive tables on smaller screens.
When `true`, the `` layout will be adjusted on smaller screens, allowing table data to flow vertically instead of horizontally. This prevents users from having to scroll horizontally, making the table data easier to read. When `false`, `` elements will be displayed as they are on larger screens, with a horizontal scrollbar if necessary.
**Example**
```javascript
window.$docsify = {
// ...
themeable: {
responsiveTables: true // default
}
}
```