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
| BE Разработчик | |
| Brawl Stats (https://brawlstats.com) - Сайт и мобильное приложение для фанатов игры Brawl Stars. | |
| Продвинутая статистика, аналитика, и рекомендации для игроков. | |
| Мы анализируем гигабайты матчей игроков каждый день, чтобы предоставить самые сильные и самые слабые комбинации. | |
| Overwolf (https://overwolf.com) - Компания-разработчик коммьюнити приложений для компьютерных и мобильных игр с головным офисом в Тель-Авив, Израиль. | |
| Пресса о нас: | |
| * https://venturebeat.com/2018/11/06/overwolf-raises-16-million-for-game-services-in-round-led-by-intel-capital/ |
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
| import UIKit | |
| extension UIColor { | |
| // MARK: Accent | |
| class var sr_blue: UIColor { return 0x0089FF.color } | |
| class var sr_red: UIColor { return 0xE60000.color } | |
| class var sr_green: UIColor { return 0x19AA02.color } | |
| class var sr_darkBlue: UIColor { return 0x006EC9.color } | |
| class var sr_darkBlueTone: UIColor { return 0x0E82E0.color } |
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
| syncColumns (container, activeIndex) { | |
| const activeElement = container.find(`.round:nth-child(${activeIndex + 1})`); | |
| activeElement.find('.matchup').each((i, el) => { | |
| $(el).css('margin-top', 0); | |
| $(el).css('margin-bottom', 0); | |
| }); | |
| setTimeout(() => { | |
| container.find('.round').each((i, el) => { |
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
| const where = Object.keys(request.query).reduce((accumulator, field) => { | |
| if (!!~filterFields.indexOf(field)) { | |
| accumulator[field] = request.query[field]; | |
| } | |
| return accumulator; | |
| }, {}); |
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
| <div class="container-s-display-flex-i-direction-row"> | |
| <div class="levo"> | |
| <div v-if="isKibersport"> | |
| <div class="knopka">Zmi esli ne designer</div> | |
| </div> | |
| </div> | |
| <div class="center" style="flex: 1"></div> | |
| <div class="pravo"> |
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
| <template> | |
| <div> | |
| <div v-if="isExist"></div> | |
| </div> | |
| </template> | |
| <script> | |
| module.exports = { | |
| props: { |
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
| <div class="ui__select" data-select="true" data-mode="navigate" data-target="locationId" data-method="replace"> | |
| <select class="ui__selectElement"> | |
| <option>All</option> | |
| <option>Ladder</option> | |
| <option>Challenge</option> | |
| <option>Tournament</option> | |
| <option>Team</option> | |
| </select> | |
| </div> |
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
| // Create a range object for efficently rendering strings to elements. | |
| var range; | |
| function toElement(str) { | |
| if (!range) { | |
| range = document.createRange(); | |
| range.selectNode(document.body); | |
| } | |
| var fragment; |