This is a SCRIPT-8 cassette.
This file contains 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
{ | |
"icons": [ | |
["address_book", "0xF2B9"], | |
["address_card", "0xF2BB"], | |
["alarm_clock", "0x23F0"], | |
["align_center", "0xF037"], | |
["align_justify", "0xF039"], | |
["align_left", "0xF036"], | |
["align_right", "0xF038"], | |
["anchor", "0x2693"], |
This file contains 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).ready(function() { | |
setTimeout(function() { | |
$('body').addClass('loaded'); | |
}, 200); | |
}); | |
$(window).load(function() { | |
if (location.hash === '#tickets') { | |
openBuyPopup(); |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<script data-class="radarioButtonScript" src="https://radario.ru/scripts/widget/buy-button-widget.js"></script> | |
</head> | |
<body class="grid"> | |
<div class="grid tickets" id="tickets"> | |
а вот это ссылка |
This file contains 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="grid tickets" id="tickets"> | |
а вот это ссылка | |
<a onclick="openBuyPopup()" href="#tickets">Купить билет</a> | |
</div> | |
<script> | |
function openBuyPopup() { | |
var opt = { id: 453795, forgetOriginalHash: true }; | |
radario.openBuyPopup(opt); | |
} |
This is a SCRIPT-8 cassette.
This file contains 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
syntax = "proto3"; | |
package gRPCUE4_API; | |
service API { | |
rpc Send(Message) returns (Result) {}; | |
rpc Stream(Request) returns (Result) {}; | |
} | |
message Message { |
This file contains 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
syntax = "proto3"; | |
package gRPCUE4_API; | |
service API { | |
rpc Send(Message) returns (Result) {}; | |
rpc Stream(Request) returns (Result) {}; | |
} | |
message Message { |
This file contains 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
$('.unreal-form-call').on('click', function () { | |
var $this = $(this), | |
period = $this.data('period') ? $this.data('period') : null, | |
hiddenTypes = ['Unreal','Epic'], | |
type = $this.data('type'); | |
//console.log("1122312"); | |
// соответствие пак->период: Селект периодов представляет собой значения одномерного массива, | |
// где 0: 3 месяца, 1 - 6 месяцев и т.д. | |
// Когда мы отправляем значение пака, то в periods передаем индекс массива, который соответствует данному периоду |
This file contains 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
$(".head-unreal-form-call").on("click", function() { | |
var $this = $(this), type = $this.data('type') | |
promise.then(function(content){ | |
var $form = content.find('#orderUnrealForm'), | |
$selectPackages = $form.find('#packages'); | |
$selectPackages.val(type).change(); | |
}) | |
}) |
NewerOlder