Commit 7ca00e7e authored by Dave Lawrence's avatar Dave Lawrence

Bug 802586 - config.js.tmpl doesn't display keywords correctly anymore

r/a=LpSolit
parent 5c7a5ee4
......@@ -30,8 +30,15 @@ var resolution = [ [% FOREACH x = resolution %]'[% x FILTER js %]', [% END %]
// Keywords
// ========
var keyword = [ [% FOREACH x = keyword %]'[% x FILTER js %]', [% END %] ];
var keyword = [ [% FOREACH k = keywords %]'[% k.name FILTER js %]', [% END %] ];
var keyword_descs = [
[% FOREACH k = keywords %]
{
name: '[% k.name FILTER js %]',
description: '[% k.description FILTER js %]',
},
[% END %]
];
// Platforms
// =========
......
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