Updated JQuery; Added resize sensor library; Updated the admin code (prior to changing gears to use Meteor).

This commit is contained in:
Wynne Crisman
2016-12-28 11:13:44 -08:00
parent 801c0507e5
commit 00f2be30ce
58 changed files with 29553 additions and 252 deletions

View File

@@ -143,15 +143,14 @@ $(function() {
}
};
var dataTable = new LinkedTable($page.find('#dataTable'), {
var $table = $page.find('#dataTable');
$table.buildTable({
url: "data/User/readAll",
attr: "data-key-name",
selection: "row",
selectionChanged: selectionChanged
});
//Call the refresh user table function once initially.
dataTable.build();
var dataTable = $table.getTable();
//----------------------------
//---- Create User Dialog ----