-
Notifications
You must be signed in to change notification settings - Fork 78
Home
Michael Kaufmann edited this page Aug 13, 2021
·
4 revisions
This is a simple wiki to share content.
A link to a New Page will be displayed in red until you click the link and the page is automatically created. If you want the link text ti be different from the page name you can use this syntax: [[link text|page name]]
You can use markdown to format you page - inlcuding images, emoticons , and source code.
nextWhenVisible() {
// Don't call next when the page isn't visible
// or the carousel or its parent isn't visible
if (!document.hidden && isVisible(this._element)) {
this.next()
}
}