Clean up old JS.

This commit is contained in:
James Cole
2018-04-28 05:40:08 +02:00
parent bc8bcf7a1a
commit 9c5523252d
7 changed files with 53 additions and 60 deletions

View File

@@ -29,14 +29,4 @@ $(document).ready(function () {
}
);
}
// on change currency drop down list:
$('#ffInput_currency_id').change(updateCurrencyItems);
updateCurrencyItems();
});
function updateCurrencyItems() {
var value = $('#ffInput_currency_id').val();
var symbol = currencies[value];
$('.non-selectable-currency-symbol').text(symbol);
}