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 @@
}
</style>
<heading>File browser for {{ url }}</heading>
<template repeat="{{ directory in directories }}">
<a href="{{ directory }}">{{ directory }}</a>
<template repeat="{{ directories }}">
<a href="{{}}">{{}}</a>
</template>
<template repeat="{{ file in files }}">
<a href="{{ file }}">{{ file }}</a>
<template repeat="{{ files }}">
<a href="{{}}">{{}}</a>
</template>
</template>
<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