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 React, { FunctionComponent, useCallback } from 'react'; | |
| import ScrollBars from '../../../../../components/ScrollBars'; | |
| const ReactWindowScrollBars: FunctionComponent<any> = ({ onScroll, forwardedRef, style, children }) => { | |
| const refSetter = useCallback((scrollbarsRef) => { | |
| if (scrollbarsRef) { | |
| forwardedRef(scrollbarsRef.view); | |
| } else { | |
| forwardedRef(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
| jQuery('.workshopItemCollectionContainer').each(function() { | |
| var link = jQuery(this).find('div[class=workshopItemCollection]').attr('onclick').split('href=')[1]; | |
| var old_inner_html = jQuery(this).html(); | |
| jQuery(this).html('<a href="'+link+'" target="_blank">'+old_inner_html+'</a>'); | |
| jQuery(this).find('div[class=workshopItemCollection]').attr('onclick',''); | |
| }); |
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
| var result_rub = 0; | |
| var result_dollar = 0; | |
| var result_euro = 0; | |
| jQuery('.transactionRowPrice').each(function() { | |
| var string_value = $(this).innerText; | |
| if (string_value.indexOf('pуб.')!=-1) { | |
| result_rub+= +(string_value.split(' ')[0]).replace(',','.'); | |
| } | |
| if (string_value.indexOf('$')!=-1) { | |
| result_dollar+= +string_value.replace('$','').replace('R','').replace(',','.'); |
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
| var card_info_array = document.getElementsByClassName('progress_info_bold'); | |
| var result = 0; | |
| for (var iterator = 0; iterator < card_info_array.length; iterator++) { | |
| var current_result_array = card_info_array[iterator].innerHTML.split(' '); | |
| for (var item = 0; item < current_result_array.length; item++) { | |
| if (!isNaN(parseInt(current_result_array[item]))) { | |
| result+= +current_result_array[item]; | |
| break; | |
| } | |
| } |