diff --git a/addons/default/visiosoft/base-theme/resources/js/script.js b/addons/default/visiosoft/base-theme/resources/js/script.js index 70565b5ed..7c62c80c7 100644 --- a/addons/default/visiosoft/base-theme/resources/js/script.js +++ b/addons/default/visiosoft/base-theme/resources/js/script.js @@ -1,4 +1,4 @@ $('.categories-list .show-all').on('click', function () { - $(this).siblings('.hidden-category').toggleClass('hidden') - $(this).find('a span').toggleClass('hidden') -}) + $(this).siblings('.hidden-category').toggleClass('hidden'); + $(this).find('a span').toggleClass('hidden'); +}); diff --git a/config/broadcasting.php b/config/broadcasting.php index ec25f0541..8b5ba4b16 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -37,10 +37,14 @@ return [ 'app_id' => env('PUSHER_APP_ID'), 'options' => [ 'cluster' => env('PUSHER_APP_CLUSTER'), - 'encrypted' => false, + 'encrypted' => true, 'host' => '127.0.0.1', 'port' => 6001, - 'scheme' => 'http' + 'scheme' => 'https', + 'curl_options' => [ + CURLOPT_SSL_VERIFYHOST => 0, + CURLOPT_SSL_VERIFYPEER => 0, + ] ], ],