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() { | |
| var timeSeconds = 0; | |
| var timestampDivList = document.querySelectorAll("#length"); | |
| for(var i = 0; i < timestampDivList.length; i++) { | |
| var timestampDiv = timestampDivList[i]; | |
| var timeStr = timestampDiv.innerHTML; |
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
| document.querySelectorAll('form[ajaxify]').forEach(function( el ){ | |
| var path = el.getAttribute('ajaxify') | |
| el.setAttribute('ajaxify', path.replace( 'is_completed=1','is_completed=0' ) ) | |
| el.style.display = 'block'; | |
| el.querySelector('span').innerText = 'Desfazer'; | |
| }) |
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 SimpleFX = { | |
| minNegotiation : 0, | |
| marginRequired : 0, | |
| totalFavorites : 0, | |
| addFavoritos : false, | |
| useTableCache : false, | |
| elements : { | |
| groupsInvestiments : $('.marketwatch__category-section'), | |
| allInvestiments : $('.marketwatch-item__col-symbol'), |
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
| $ redis-cli | |
| > config set stop-writes-on-bgsave-error no |