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
const { web3, splToken, orca, orcaCommon, Decimal, SOL, USDC } = require('./commonImports'); | |
const utils = require('./utils'); | |
const { | |
connection, | |
ctx, | |
client, | |
whirlpoolPublicKey, | |
walletPublicKey | |
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 tempArray = [ | |
{ | |
"id": 50883374, | |
"userID": 277859, | |
"name": "Umakant Sharma", | |
"status": 2, | |
"exp": {}, | |
"currentLocation": "", | |
"preferredLocation": null, | |
"date": "2018-01-07T20:06:17.000Z", |
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
@import '../../theme/colors.css'; | |
.inputFields{ | |
width: 90%; | |
max-width: none; | |
height: 30px; | |
border:none; | |
padding-left: 20px; | |
margin-top: -5px; | |
} | |
.inputHolder{ |
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
function p1 (){ | |
return new Promise(function(resolve, reject){ | |
resolve({message: 'p1 resolved'}); | |
}) | |
} | |
function test(){ | |
let unresolvePromise = Promise.reject({message: 'meant to be rejected'}); | |
unresolvePromise = p1(); | |
return unresolvePromise.then(function(data){ |
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> | |
<title>PressPlay TV</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | |
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="css/normalize.css"> | |
<link rel="stylesheet" href="css/grid.css"> | |
<link rel="stylesheet" href="css/main.css"> |