blob: 0bfc65a142b36353e5ee3f9cb57142299b75cb99 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/**
* Page-specific Javascript file. Should generally be included as a separate asset bundle in your page template.
* example: {{ assets.js('js/pages/sign-in-or-register') | raw }}
*
* This script depends on widgets/groups.js, uf-table.js, moment.js, handlebars-helpers.js
*
* Target page: /groups
*/
$(document).ready(function() {
$("#widget-groups").ufTable({
dataUrl: site.uri.public + "/api/groups",
useLoadingTransition: site.uf_table.use_loading_transition
});
// Bind creation button
bindGroupCreationButton($("#widget-groups"));
// Bind table buttons
$("#widget-groups").on("pagerComplete.ufTable", function () {
bindGroupButtons($(this));
});
});
|