16 lines
383 B
Plaintext
16 lines
383 B
Plaintext
<ol class="nav nav-list">
|
|
<%= render_node_and_children(Item.first(:conditions => {:parent_id => nil})) %>
|
|
</ol>
|
|
<script type="text/javascript">
|
|
$.ajaxSetup({
|
|
error: function(xhr, status, err) {
|
|
if (xhr.status == 401){
|
|
alert("<%= I18n.t('access.denied.ajax_401_error') %>");
|
|
window.location.href = '/';
|
|
}
|
|
}
|
|
});
|
|
|
|
bindTreeDragHandle();
|
|
</script>
|