- Oh My Zsh
- Powerline fonts
- https://github.com/Lokaltog/powerline-fonts
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
/*------------------------------------------ | |
Responsive Grid Media Queries - 1280, 1024, 768, 480 | |
1280-1024 - desktop (default grid) | |
1024-768 - tablet landscape | |
768-480 - tablet | |
480-less - phone landscape & smaller | |
--------------------------------------------*/ | |
@media all and (min-width: 1024px) and (max-width: 1280px) { } | |
@media all and (min-width: 768px) and (max-width: 1024px) { } |
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 formataMoeda(objTextBox, SeparadorMilesimo, SeparadorDecimal, e){ | |
var sep = 0; | |
var key = ''; | |
var i = j = 0; | |
var len = len2 = 0; | |
var strCheck = '0123456789'; | |
var aux = aux2 = ''; | |
var whichCode = (window.addEventListener) ? e.which : e.keyCode; | |
// 13=enter, 8=backspace as demais retornam 0(zero) | |
// whichCode==0 faz com que seja possivel usar todas as teclas como delete, setas, etc |