inventur/js/app.js
2018-01-14 20:04:10 +01:00

24 lines
477 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({
swipeable: true,
responsiveThreshold: 640
});
$('.fixed-action-btn').floatingActionButton();
$('.tooltipped').tooltip();
});