Skip to content
Michael Kaufmann edited this page Aug 13, 2021 · 4 revisions

Welcome to the AccelerateDevOps wiki!

This is a simple wiki to share content.

Linking to pages

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]]

Markdown

You can use markdown to format you page - inlcuding images, emoticons :shipit:, 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()
    }
  }