andrewboy/laravel-statistics-panel

此包的最新版本(dev-master)没有提供许可证信息。

Laravel 统计面板包。

安装: 169

依赖者: 1

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

公开问题: 0

语言:JavaScript

dev-master 2017-03-08 11:18 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:19:59 UTC


README

readme

(function(stat_widgets){ function StatDiaperGrid(id) { this.id = id; }

StatDiaperGrid.prototype = Object.create(window.statistics_panel.widgets.grid.prototype);
StatDiaperGrid.prototype.constructor = StatDiaperGrid;
StatDiaperGrid.prototype.init = function() {};
StatDiaperGrid.prototype.update = function(data) {
    this.setGrid(data.data);
    $('.summary', this.getFooter()).text(data.total);
};

stat_widgets.diaper_grid = StatDiaperGrid;

}(window.statistics_panel.stat_widgets));