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
<script> | |
(function() { | |
var dispatchMessage = function(evt, message, result) { | |
if (evt) { | |
evt.preventDefault(); | |
} | |
const data = { | |
'func': 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
{ | |
"data": null, | |
"accessToken": null, | |
"error": { | |
"level": "Error", | |
"type": null, | |
"title": null, | |
"messages": [ | |
{ | |
"failedKey": "Error retrieving casino list", |
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
<?php include $_SERVER['DOCUMENT_ROOT'] . "/markup/structure/html_header.php"; ?> | |
<body class="join-now"> | |
<main class="component form-confirmation"> | |
<h4>Confirmation</h4> | |
<div class="conf-mess tick"> | |
<p>Successfully deposited</p> | |
</div> | |
<div class="conf-button"> |
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
{ | |
"data": { | |
"searchResults": [ | |
{ | |
"id": 0, | |
"title": "Slots & Online Games", | |
"results": [ | |
{ | |
"title": "Gorilla Go Wild", | |
"gameId": "874640622286409728", |
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
App.Sitemap = { | |
menu: [ | |
{ | |
id: "123" | |
title: "Live Casino", | |
icon: "x", | |
url: "x", | |
subSections: [ | |
{ | |
id: "123", |
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
class InfiniteScroll extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
scrollElement: null, | |
waypointClassName: 'infinite-scroll__waypoint', | |
} | |
this.scrollListener = this.scrollListener.bind(this); |
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
isLoggedIn: (redirect=false) => { | |
return CMS.get({ | |
url: App.SiteURL + '/api/SessionActive/', | |
data: { | |
channelId: getDevice() === 'mobile' ? 2 : 1 | |
} | |
}).then(response => { | |
if (response.data || response.accessToken) { | |
return true; |
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
var esteescreen = { | |
holder: null, | |
proto: null, | |
pollTime: 2500, | |
itemIndex: 0, | |
lastId: 0, | |
newestItem: 0, | |
tempNewest: 0, | |
scrollLimit: 10000, | |
isPolling: false, |
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
<?php | |
$limit = 4; | |
$order = "DESC"; | |
if(array_key_exists('limit',$_GET)) { | |
$limit = $_GET['limit']; | |
} | |
if(array_key_exists('order',$_GET)) { |
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
var esteescreen = { | |
holder: null, | |
proto: null, | |
pollTime: 2500, | |
itemIndex: 0, | |
lastTimestamp: null, | |
newestItem: 0, | |
tempNewest: 0, | |
scrollLimit: 10000, | |
isPolling: false, |