inventur/js/app.js
2018-01-11 14:57:10 +01:00

20 lines
380 B
JavaScript

accounting.settings = {
currency: {
symbol: "€",
format: "%v %s",
decimal: ",",
thousand: ".",
precision: 2
},
number: {
precision : 2, // default precision on numbers is 0
thousand: ".",
decimal : ","
}
};
$(document).ready(function(){
$('.tabs').tabs();
$('.fixed-action-btn').floatingActionButton();
});