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
<!doctype html> | |
<html lang="ru"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<body> | |
<div class="btn">" | |
<a href="#" class="simple-button">Кнопка</a> |
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
_onSortLinkClick(evt) { | |
evt.preventDefault(); | |
if (evt.target.tagName !== `A`) { | |
return; | |
} | |
const tasksList = document.querySelector(`.board__tasks`); | |
tasksList.innerHTML = ``; | |
switch (evt.target.dataset.sortType) { |
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
import { | |
makeTasks, | |
render} from './components/util'; | |
import {getSorts} from './components/data'; | |
import Sort from './components/sort'; | |
import Board from './components/board'; | |
import Card from './components/card'; | |
import CardEdit from './components/card-edit'; | |
import NoTasks from './components/no-tasks'; |
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
Команды в Git Bash консоли | |
clear — Очистить консоль | |
Навигация | |
pwd — Показать текущий каталог | |
ls - Показать файлы в данной папке, кроме скрытых | |
ls -f — Показать файлы в данной папке, включая и скрытые | |
cd c:/ — Перейти в конкретный каталог | |
cd - — Вернуться назад | |
cd .. — Выйти на 1 уровень вверх |