Commit 018e6ba3 authored by Rafael Weinstein's avatar Rafael Weinstein

fix file-browser

R=eseidel@chromium.org, abarth
BUG=

Review URL: https://codereview.chromium.org/705683002
parent 842d4666
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
} }
</style> </style>
<heading>File browser for {{ url }}</heading> <heading>File browser for {{ url }}</heading>
<template repeat="{{ directory in directories }}"> <template repeat="{{ directories }}">
<a href="{{ directory }}">{{ directory }}</a> <a href="{{}}">{{}}</a>
</template> </template>
<template repeat="{{ file in files }}"> <template repeat="{{ files }}">
<a href="{{ file }}">{{ file }}</a> <a href="{{}}">{{}}</a>
</template> </template>
</template> </template>
<script> <script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment