This repository has been archived on 2026-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
polyplus/js/account/create.js
2024-01-20 17:33:44 -06:00

7 lines
No EOL
369 B
JavaScript
Executable file

let NavColumn = document.getElementsByClassName('col-lg-2')[0]
let LaunchCreatorBtn = document.createElement('button')
LaunchCreatorBtn.classList = 'btn btn-success w-100'
LaunchCreatorBtn.innerText = 'Launch Creator'
LaunchCreatorBtn.setAttribute('data-id', '1')
LaunchCreatorBtn.setAttribute('onclick', 'editPlace(this)')
NavColumn.appendChild(LaunchCreatorBtn)