blob: a1ca959a574edc26fb19b654ed3596d776959b1d (
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 uf-table.js, moment.js, handlebars-helpers.js
*
* Target page: /groups/g/{slug}
*/
$(document).ready(function() {
// Control buttons
bindGroupButtons($("#view-group"));
// Table of users in this group
$("#widget-group-users").ufTable({
dataUrl: site.uri.public + '/api/groups/g/' + page.group_slug + '/users',
useLoadingTransition: site.uf_table.use_loading_transition
});
// Bind user table buttons
$("#widget-group-users").on("pagerComplete.ufTable", function () {
bindUserButtons($(this));
});
});
|