Fix url path

This commit is contained in:
Nicolas Le Goff
2014-02-28 17:28:50 +01:00
parent b354b063ee
commit 4f66003425
2 changed files with 10 additions and 9 deletions

View File

@@ -61,7 +61,7 @@
{% block content %}
<div id="admin-app" data-usr="{{ app['authentication'].getUser().getId() }}">
<div id="left" class="PNB left-view" style="width:250px;right:auto;" data-tree-url="{{ path("admin_tree_display") }}" data-websocket="{{ "ws://" ~ app["conf"].get(["main" ,"websocket-server", "host"]) ~ ":" ~ app["conf"].get(["main" ,"websocket-server", "port"]) ~ "/websockets" }}">
<div id="left" class="PNB left-view" style="width:250px;right:auto;" data-tree-url="{{ path("admin_display_tree") }}" data-websocket="{{ "ws://" ~ app["conf"].get(["main" ,"websocket-server", "host"]) ~ ":" ~ app["conf"].get(["main" ,"websocket-server", "port"]) ~ "/websockets" }}">
<div class="PNB10" style="right:0">
<div id="FNDR">
{% include 'admin/tree.html.twig' %}

View File

@@ -13,14 +13,15 @@
<script src="../../scripts/tests/main.js"></script>
<script>
require([
'tests/baseTest',
'specs/admin/fields',
'specs/admin/taskmanager',
'specs/login/home',
'specs/models',
'specs/validator',
'specs/websockets/connection',
'specs/websockets/subscriberManager'
// 'tests/baseTest',
// 'specs/admin/fields',
// 'specs/admin/taskmanager',
'specs/admin/main',
// 'specs/login/home',
// 'specs/models',
// 'specs/validator',
// 'specs/websockets/connection',
// 'specs/websockets/subscriberManager'
], runMocha);
</script>
</body>