Skip to content

Commit

Permalink
Release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Kats committed Apr 26, 2018
1 parent c309327 commit e68adf9
Show file tree
Hide file tree
Showing 11 changed files with 2,131 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dist/Table.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
define(["jquery", "angara.tablejs", "exports"], function ($, TableViewer, exports) {
exports.Show = function (tableSource, container) {
tableSource.viewSettings = { defaultTab: "summary", defaultPageSize: 10, hideNaNs: false };
TableViewer.show(container, tableSource);
};
});
7 changes: 7 additions & 0 deletions dist/TableView.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
define(["jquery", "angara.tablejs", "exports"], function ($, TableViewer, exports) {
exports.Show = function (tableView, container) {
tableSource = tableView["table"];
tableSource.viewSettings = tableView["viewSettings"];
TableViewer.show(container, tableSource);
};
});
Loading

0 comments on commit e68adf9

Please sign in to comment.