Commit 798582e3 authored by john's avatar john

t_3031

parent 26290c68
...@@ -14,7 +14,7 @@ $(function () ...@@ -14,7 +14,7 @@ $(function ()
$(this).html(listOfImages.join('')).removeClass('owl-carousel-need-replace hidden'); $(this).html(listOfImages.join('')).removeClass('owl-carousel-need-replace hidden');
}) })
$('.container_documentation').find('img:not(".container_documentation_owl_img")').click(function () $('.container_documentation .container_documentation_right').find('img:not(".container_documentation_owl_img")').click(function ()
{ {
$.magnificPopup.open({ $.magnificPopup.open({
items: { items: {
......
...@@ -91,7 +91,7 @@ class PageController extends \common\components\BaseController ...@@ -91,7 +91,7 @@ class PageController extends \common\components\BaseController
'html' => '@common/modules/blog/mail/messageBlog-html', 'html' => '@common/modules/blog/mail/messageBlog-html',
'text' => '@common/modules/blog/mail/messageBlog-text'], ['model' => $model] 'text' => '@common/modules/blog/mail/messageBlog-text'], ['model' => $model]
) )
->setFrom([\common\models\Settings::getValue('bids-support-email-from') => 'Блог Task-On']) ->setFrom([\common\models\Settings::getValue('bids-support-email-from') => 'Заявка на подключение'])
->setTo(\common\models\Settings::getValue('article-email')) ->setTo(\common\models\Settings::getValue('article-email'))
->setSubject("Заявка на подключения к TaskOn - " . $model->primaryKey) ->setSubject("Заявка на подключения к TaskOn - " . $model->primaryKey)
->send(); ->send();
......
...@@ -118,7 +118,7 @@ $this->registerMetaTag(['property' => 'og:site_name', 'content' => 'Арт Пр ...@@ -118,7 +118,7 @@ $this->registerMetaTag(['property' => 'og:site_name', 'content' => 'Арт Пр
<div class="container container_documentation padding-bottom-3x mb-2"> <div class="container container_documentation padding-bottom-3x mb-2">
<div class="row"> <div class="row">
<!-- Content--> <!-- Content-->
<div class="col-xl-8 col-lg-7 order-lg-2"> <div class="col-xl-8 col-lg-7 order-lg-2 container_documentation_right">
<!-- Post--> <!-- Post-->
......
...@@ -36,16 +36,17 @@ $('form.bids-form').on('beforeSubmit', function(e) { ...@@ -36,16 +36,17 @@ $('form.bids-form').on('beforeSubmit', function(e) {
{ {
if(form.find('.message-box').length > 0) if(form.find('.message-box').length > 0)
{ {
form.find('.message-box').fadeIn('fast'); form.find('.content').css('opacity','0');
form.find('.content').css('visibility','hidden'); form.find('.content').css('visibility','hidden');
form.find('.message-box').fadeIn('fast');
setTimeout(function(){ setTimeout(function(){
form.find('.message-box').fadeOut('fast'); form.find('.message-box').fadeOut('fast');
form.find('.content').css('visibility','visible'); form.find('.content').css('visibility','visible');
form.find('.content').css('opacity','1');
form.closest(".mfp-content").find(".mfp-close").click() form.closest(".mfp-content").find(".mfp-close").click()
}, 2000); }, 2000);
} }
form.find('input:not(.not_clear), textarea').val(''); form.find('input:not(.not_clear), textarea').val('');
form.find('#files-zone').html(''); form.find('#files-zone').html('');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment