This file contains hidden or 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
| [{"id":"e6d97864-54e8-4a01-b526-c7cfe566ccea","name":"Carrie-Med-Natural-Leather","description":"carrie med natural leather","image":"//d1spq65clhrg1f.cloudfront.net/uploads/catalog_item/image/1/1235/1235715/Carrie-Med-Natural-Leather.jpg","data":{"sku":"A1"}},{"id":"45854054-6182-4aba-b864-8531f0b1abaa","name":"Dareful-Black-Fabric","description":"dareful black fabric","image":"//d1spq65clhrg1f.cloudfront.net/uploads/catalog_item/image/1/1235/1235716/Dareful-Black-Fabric.jpg","data":{"sku":"A2"}},{"id":"0910ef5b-fae7-4985-b857-5033d073b05e","name":"Forquer-U-Gold","description":"forquer u gold","image":"//d1spq65clhrg1f.cloudfront.net/uploads/catalog_item/image/1/1235/1235717/Forquer-U-Gold.jpg","data":{"sku":"A3"}},{"id":"16c7f099-b70f-4e75-aad0-a42803aee057","name":"Garland-Black","description":"garland black","image":"//d1spq65clhrg1f.cloudfront.net/uploads/catalog_item/image/1/1235/1235718/Garland-Black.jpg","data":{"sku":"A4"}},{"id":"62d81534-ee8f-48ca-b95a-3e00e5434837","name":"Lamiss-Pat-Pale-Mint-Pa |
This file contains hidden or 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
| <section class="intro" id="start"> | |
| <div class="inner"> | |
| <div class="courses"> | |
| <div class="title">Online курс</div> | |
| <dl> | |
| <dt><span><b>Base</b> системного трейдинга</span></dt> | |
| <dd class="descr"><span>С нуля до первой сделки <br>за 10 дней!</span></dd> | |
| <dd class="more"><a href="/system-trading">О чем курс?</a></dd> | |
| </dl> | |
| <dl> |
This file contains hidden or 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 () { | |
| 'use strict'; | |
| function Timeline($elem, options) { | |
| var that = this; | |
| this.$elem = $elem; | |
| this.$widget = null; | |
| this.$points = null; |
This file contains hidden or 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
| console.log('Loading event'); | |
| var AWS = require('aws-sdk'); | |
| var dynamodb = new AWS.DynamoDB(); | |
| exports.handler = function(event, context) { | |
| console.log("Request received:\n", JSON.stringify(event)); | |
| console.log("Context received:\n", JSON.stringify(context)); | |
| var tableName = "users"; | |
This file contains hidden or 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
| console.log('Loading event'); | |
| var AWS = require('aws-sdk'); | |
| exports.handler = function(event, context) { | |
| console.log("Request received:\n", JSON.stringify(event)); | |
| console.log("Context received:\n", JSON.stringify(context)); | |
| context.succeed('<!doctype html><html lang="en"><head><meta charset="utf-8"><style>*{outline: none;}.logo{margin-bottom: 15px; display: inline-block;}.form-container{text-align: center;width: 300px; position: absolute; transform: translate(-50%, -50%); top: 50%; left: 50%; padding: 20px;}input{width: 100%; box-sizing: border-box; padding: 10px 10px; font-size: 20px; border: 1px solid #aaa; color: rgb(0, 74, 94)}button{height: 40px; box-sizing: border-box; line-height: 40px; background: rgb(0, 74, 94); color: #fff;border: 0 none; cursor: pointer; width: 150px; display: block; margin: 0 auto;}</style></head><body><div class="form-container"><div class="logo"><img src="https://17eb94422c7de298ec1b-8601c126654e9663374c173ae837a562.ssl.cf1.rackcdn.com/Images/umbrella%20redesign/L |
This file contains hidden or 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
| //console.log('Loading event'); | |
| var AWS = require('aws-sdk'); | |
| var dynamodb = new AWS.DynamoDB(); | |
| exports.handler = function(event, context) { | |
| var data = 'body' in event ? event.body : null; | |
| data = data.split('&'); | |
| var params = {}; |
This file contains hidden or 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
| CalcAnimation.Init(); | |
| CalcAnimation.SetRange(1, 200); | |
| ob.find(".slider_0").slider({ | |
| value: showProgStep(minVklad[curVal], programData.currency[curVal].max, programData.currency[curVal].initSumm), | |
| min: 1, | |
| max: 200, | |
| step: 1, | |
| range: "min", | |
| slide: function (event, ui) { | |
| ob.find('.sum_0').val(addNbsp(showProgSumm(minVklad[curVal], programData.currency[curVal].max, ui.value))); |
This file contains hidden or 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
| public function actionStaff() | |
| { | |
| set_time_limit(0); | |
| $tasks = StaffTask::model()->find(array( | |
| 'condition' => '`enabled` = 1 AND `count` < `done`' | |
| )); | |
| if (empty($tasks)) { | |
| return; |
This file contains hidden or 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 (global) { | |
| 'use strict'; | |
| function isHeaderFixed() { | |
| return $('.b-header--fixed').length > 0; | |
| } | |
| function getOffsetY(y) { | |
| var originalY = isHeaderFixed() ? y + 220 : y; |
This file contains hidden or 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
| <ScheduledGreetingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Recson.Api.Rest.Models"><ActivateImmediately>true</ActivateImmediately><ActivationTime>0001-01-01T00:00:00</ActivationTime><ConfiguredBlocks></ConfiguredBlocks><FollowUpGreeting i:nil="true"/><MailboxesToActivateOn xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"><d2p1:anyURI>http://api.recson.com/api/mailboxes/460</d2p1:anyURI><d2p1:anyURI>http://api.recson.com/api/mailboxes/58120</d2p1:anyURI></MailboxesToActivateOn><Self i:nil="true"/><Status>Scheduled</Status><Template>http://api.recson.com/api/greetingtemplates/5025</Template></ScheduledGreetingModel> |