De-conflict asset bundles

This commit is contained in:
2022-03-05 17:22:25 +00:00
parent 5cf22b1715
commit 299a6709cd
10 changed files with 37 additions and 35 deletions

View File

@@ -0,0 +1,15 @@
/**
* 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/users.js, uf-table.js, moment.js, handlebars-helpers.js
*
* Target page: /users
*/
$(document).ready(function() {
// Bind table buttons
$("#widget-users").on("pagerComplete.ufTable", function () {
bindUserButtonsExtra($(this));
});
});