for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
$(document).ready(function () {
$('#ref-dropdown').on('change', function () {
var bonus = $('option:selected', this).data('bonus');
var bonus_text = bonus_translate.replace('%referal_bonus%', bonus);
bonus_translate
/** global: bonus_translate */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
$('#bonus_text').text(bonus_text);
});
})
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.