categories.js revision 5565741215e43ce47d3d3656f02316144d4dab4f
493N/A$(function () {
0N/A $.jstree._themes = "/assets/jstree-themes/";
1130N/A $(".selector").jstree({
0N/A "plugins" : [ "search", "themes", "html_data", "checkbox", "sort", "ui" ],
0N/A "checkbox": {
919N/A real_checkboxes: true,
919N/A real_checkboxes_names: function (n) { return [("category_ids[" + n[0].id + "]"), 1]; },
919N/A two_state: true
919N/A },
919N/A "themes": {
0N/A theme: "classic",
919N/A icons: false
919N/A }
919N/A });
0N/A});
919N/A