eMagiz Academy

Version 72.1 by Erik Bakker on 2022/04/25 16:15

Welcome to the eMagiz Academy section. In this section, you will find all the relevant learnings for eMagiz. Below are the five main entry points which will assist you to find the right content for your work.

                document.addEventListener('keyup', function(e) {
                  if (e.target !== document.body) {
                    return;
                  }
                  // keyCode for '/' (slash)
                  if (e.keyCode === 191) {
                    const search = document.getElementById('search_input_react');
                    search && search.focus();
                  }
                });
              
              var search = docsearch({
                
                apiKey: '2e1804e3e0c239242d9914d98d6bf260',
                indexName: 'emagiz',
                inputSelector: '#search_input_react'
              });