Merge pull request #592 from tiwariav/bugfix/dcl_cms_section_iamge_caption

Bugfix/ dcl cms section image caption
This commit is contained in:
Arvind Tiwari 2018-03-22 00:59:30 +05:30 committed by GitHub
commit 7ef37de084
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 4 deletions

View File

@ -549,6 +549,7 @@ textarea {
padding-top: 20px;
display: inline-block;
color: #999 !important;
word-break: break-all;
}
.price-calc-section .card {

View File

@ -107,10 +107,14 @@
var href = $(this).attr('href');
$('.navbar-collapse').removeClass('in');
$('.navbar-collapse').addClass('collapsing');
if ($(href).length) {
$('html, body').animate({
scrollTop: $(href).offset().top - 50
}, 1000);
if (href[0] === "#") {
if ($(href).length) {
$('html, body').animate({
scrollTop: $(href).offset().top - 50
}, 1000);
}
} else if (href) {
window.location = href;
}
});
}