Skip to content

Instantly share code, notes, and snippets.

@brickbones
Created March 30, 2019 21:22
Show Gist options
  • Save brickbones/cff26bd325b94af42df755b73e0d3cf4 to your computer and use it in GitHub Desktop.
Save brickbones/cff26bd325b94af42df755b73e0d3cf4 to your computer and use it in GitHub Desktop.
Cleave.js settings
new Cleave('.account', {
prefix: 'IEAT',
delimiter: '-',
blocks: [4,4],
uppercase: true
});
new Cleave('.donation', {
numeral: true,
numeralThousandGroupStyle: 'thousand'
})
new Cleave('.creditcard', {
creditCard: true,
delimiter: '-',
onCreditCardTypeChanged: function (type) {
if(type === 'visa'){
document.querySelector('.fa-cc-visa').classList.add('active');
} else {
document.querySelector('.fa-cc-visa').classList.remove('active');
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment