aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/admin/assets/userfrosting/js/pages/roles.js
blob: 8818cb53af3365e634a23902ea33a4d7a9a27b15 (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/roles.js, uf-table.js, moment.js, handlebars-helpers.js
 *
 * Target page: /roles
 */

$(document).ready(function () {
    // Set up table of roles
    $("#widget-roles").ufTable({
        dataUrl: site.uri.public + "/api/roles",
        useLoadingTransition: site.uf_table.use_loading_transition
    });

    // Bind creation button
    bindRoleCreationButton($("#widget-roles"));

    // Bind table buttons
    $("#widget-roles").on("pagerComplete.ufTable", function () {
        bindRoleButtons($(this));
    });
});