This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (function() { | |
let interval; | |
let containerElt; | |
let minElt; | |
let secElt; | |
const template = | |
'<div id="aalexeev-timer" style="background: #434343; padding: 10px; text-align: center; font-size: 40px; font-family: monospace; color: #fff;"><span data-minutes></span>:<span data-seconds></span></div>'; | |
const DEFAULT_MINUTES = 10; | |
starter(); |