This file contains 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
curl -fsSL https://get.docker.com | sh |
This file contains 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
/** | |
* @returns {number} Возвращает количество пикселей ширины полосы прокрутки браузера. | |
*/ | |
static getScrollWidth() | |
{ | |
let div = document.createElement('div'); | |
div.style.display = 'inline-block'; | |
div.style.visability = 'hidden'; | |
div.style.width = '50px'; | |
div.style.height = '50px'; |