mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-04 19:53:44 +00:00
15 lines
249 B
JavaScript
15 lines
249 B
JavaScript
$(function () {
|
|
|
|
|
|
/**
|
|
* get data from controller for home charts:
|
|
*/
|
|
$.getJSON('chart/home/account').success(function (data) {
|
|
var options = {
|
|
|
|
};
|
|
$.plot("#flot-chart-accounts", data, options);
|
|
});
|
|
|
|
|
|
}); |