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
<select id="tags-select" multiple> | |
<option value="политика" selected>Политика</option> | |
<option value="музыка" selected>Музыка</option> | |
<option value="спорт">Спорт</option> | |
</select> | |
<p id="tags-text"><p> |
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
<form name="filter"> | |
<div class="filter-item filter-date">Фильтр по дате: от: <input name="date-from" type="date" /> до: <input name="date-to" type="date" /></div> | |
<div class="filter-item filter-author">Фильтр по автору: | |
<!-- Тут хардкод. По заданию вам надо из javascript наполнять <select> Пример: http://learn.javascript.ru/form-elements#добавьте-опцию-к-селекту --> | |
<select name="author"> | |
<option value="all" selected>Все</option> | |
<option value="meduza">Meduza</option> | |
<option value="ria">Риа Новости</option> | |
<option value="sports">Sports.ru</option> | |
</select> |
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
{ | |
"id": "news/2017/02/28/rossiya-snimet-zapret-na-import-moldavskih-vin", | |
"title": "Россия снимет запрет на импорт молдавских вин", | |
"author": "sports", | |
"createdAt": "2017-02-28T05:24:23.856Z", | |
"content": "Content of post", | |
"summary": "Summary of post" | |
} |
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
var articles = [{ | |
"id": "news/2017/02/28/rossiya-snimet-zapret-na-import-moldavskih-vin", | |
"title": "Россия снимет запрет на импорт молдавских вин", | |
"author": "sports", | |
"createdAt": "2017-02-28T05:24:23.856Z", | |
"content": "Content of post", | |
"summary": "Summary of post" | |
}]; | |
// Сериализуем его |
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> | |
<head> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" href="./styles.css"> | |
</head> | |
<body> | |
<div class="header"> |
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
var articleModel = (function () { | |
var GLOBAL_ARTICLES = [{ | |
"id": "news/2017/02/28/rossiya-snimet-zapret-na-import-moldavskih-vin", | |
"title": "Россия снимет запрет на импорт молдавских вин", | |
"author": "Meduza", | |
"createdAt": new Date("2017-02-28T05:24:23.856Z"), | |
"content": "Content of post", | |
"summary": "Summary of post" | |
}]; |
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
lsof -i tcp:3000 |
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
const scrollToBottom = (el, smooth) => { | |
el.scroll({ | |
top: el.scrollHeight, | |
behavior: smooth ? 'smooth' : 'instant' | |
}); | |
}; | |
const vChatScroll = { | |
bind: (el, binding) => { | |
let scrolled = false; |
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 branch | grep -v "master" | xargs git branch -D |