Merge pull request 'main' (#13) from main into dev
Reviewed-on: #13
BIN
static/favicon/android-icon-144x144.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
static/favicon/android-icon-192x192.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
static/favicon/android-icon-36x36.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
static/favicon/android-icon-48x48.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
static/favicon/android-icon-72x72.png
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
static/favicon/android-icon-96x96.png
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
BIN
static/favicon/apple-icon-114x114.png
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
BIN
static/favicon/apple-icon-120x120.png
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
static/favicon/apple-icon-144x144.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
static/favicon/apple-icon-152x152.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
static/favicon/apple-icon-180x180.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
static/favicon/apple-icon-57x57.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
static/favicon/apple-icon-60x60.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
static/favicon/apple-icon-72x72.png
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
static/favicon/apple-icon-76x76.png
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
static/favicon/apple-icon-precomposed.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
static/favicon/apple-icon.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
static/favicon/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
static/favicon/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
static/favicon/favicon-96x96.png
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
BIN
static/favicon/favicon.ico
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |
BIN
static/favicon/ms-icon-144x144.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
static/favicon/ms-icon-150x150.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
static/favicon/ms-icon-310x310.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
static/favicon/ms-icon-70x70.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
@@ -30,6 +30,27 @@ function SendRegistrationForm(el, user_id){
|
||||
window.sessionStorage.removeItem('mailingSubscribeRequired')
|
||||
window.sessionStorage.removeItem('email')
|
||||
|
||||
fbq('track', 'Contact');
|
||||
|
||||
|
||||
ttq.identify({
|
||||
"email": "<hashed_email_address>", // string. The email of the customer if available. It must be hashed with SHA-256 on the client side.
|
||||
"phone_number": "<hashed_phone_number>", // string. The phone number of the customer if available. It must be hashed with SHA-256 on the client side.
|
||||
"external_id": "<hashed_extenal_id>" // string. Any unique identifier, such as loyalty membership IDs, user IDs, and external cookie IDs.It must be hashed with SHA-256 on the client side.
|
||||
});
|
||||
|
||||
ttq.track('CompleteRegistration', {
|
||||
"contents": [
|
||||
{
|
||||
"content_id": "<content_identifier>", // string. ID of the product. Example: "1077218".
|
||||
"content_type": "<content_type>", // string. Either product or product_group.
|
||||
"content_name": "<content_name>" // string. The name of the page or product. Example: "shirt".
|
||||
}
|
||||
],
|
||||
"value": "<content_value>", // number. Value of the order or items sold. Example: 100.
|
||||
"currency": "<content_currency>" // string. The 4217 currency code. Example: "USD".
|
||||
});
|
||||
|
||||
|
||||
if(typeof ym === 'function'){
|
||||
ym(97070898,'reachGoal','Registration')
|
||||
@@ -38,7 +59,6 @@ function SendRegistrationForm(el, user_id){
|
||||
console.log('Скрипт Яндекс.Метрики не найден. Статистика не будет отправлена.');
|
||||
}
|
||||
|
||||
|
||||
},
|
||||
error: function (data, exception){
|
||||
document.querySelector(".register").innerHTML = data.responseJSON.html
|
||||
|
||||