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
module.exports = { | |
root: true, | |
env: { | |
node: true | |
}, | |
parser: 'vue-eslint-parser', | |
parserOptions: { | |
parser: '@typescript-eslint/parser', | |
ecmaVersion: 'latest', | |
sourceType: 'module' |
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
terraform { | |
required_providers { | |
yandex = { | |
source = "yandex-cloud/yandex" | |
} | |
} | |
required_version = ">= 0.13" | |
} | |
provider "yandex" { |
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
[ | |
{ | |
"value": "Pacific/Midway", | |
"text": "(UTC-11:00) Универсальное координированное время-11" | |
}, | |
{ | |
"value": "Pacific/Honolulu", | |
"text": "(UTC-10:00) Гонолулу" | |
}, | |
{ |
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
<div class="custom-popover-wr"> | |
<div class="custom-popover" data-container="body" data-toggle="popover" data-trigger="hover" data-placement="bottom" data-content="Text"> | |
111 | |
</div> | |
</div> |
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
Найти | |
font-size:\s?(\d+)px; | |
Заменить | |
font-size: rem\($1px\); |
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
$(window).on('scroll', function() { | |
if ( $(this).scrollTop() >= $(window).height()/3 ) { | |
$('.up-btn').addClass('active'); | |
} else { | |
$('.up-btn').removeClass('active'); | |
} | |
}); | |
$('.up-btn').on('click', function() { | |
$("html, body").animate({ scrollTop: 0 }, 600); |
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
<div class="inner-collapse"> | |
<div class="panel-group"> | |
<div class="panel panel-default"> | |
<div class="panel-heading"> | |
<h4 class="panel-title"> | |
<a role="button" href="#"> | |
<span>Collapsible Group Item #1</span> | |
</a> | |
</h4> | |
</div> |
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
if ( $(".animL").length > 0 ) { | |
$(".animL").inViewport(function(px){ | |
if(px) { | |
$(this).addClass("animated fadeInLeft") ; | |
var el = $(this).find('.anim-img'); | |
setTimeout(function(el) {el.addClass("animated bounce");}.bind(this, el), 1000); | |
} | |
}); | |
} |
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
$('.gallery-slider-thumb').on('init', function(event, slick, currentSlide, nextSlide){ | |
var currentSlide = slick.currentSlide + 1; | |
var slideCount = slick.slideCount; | |
$(this).parents('.gallery-slider-thumb-wr').find('.gs-count__current').text(currentSlide); | |
$(this).parents('.gallery-slider-thumb-wr').find('.gs-count__all').text(slideCount); | |
}); | |
$('.gallery-slider-thumb').on('afterChange', function(event, slick, currentSlide, nextSlide){ | |
var currentSlide = slick.currentSlide + 1; | |
$(this).parents('.gallery-slider-thumb-wr').find('.gs-count__current').text(currentSlide); |
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
[class*="ymaps-2"][class*="-ground-pane"] { | |
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); | |
/* Firefox 3.5+ */ | |
-webkit-filter: grayscale(100%); | |
/* Chrome 19+ & Safari 6+ */ | |
} |
NewerOlder