blob: c0e0bc8710f3a11d5c530dc1e1d4f963cf9602c6 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
(function() {
/**
* Takes the |moduleListData| input argument which represents data about
* the currently available modules and populates the html jstemplate
* with that data. It expects an object structure like the above.
* @param {Object} moduleListData Information about available modules
*/
function renderTemplate(moduleListData) {
// Process the template.
const input = new JsEvalContext(moduleListData);
const output = $('naclInfoTemplate');
jstProcess(input, output);
}
/**
* Asks the C++ NaClUIDOMHandler to get details about the NaCl and
* re-populates the page with the data.
*/
function requestNaClInfo() {
cr.sendWithPromise('requestNaClInfo').then((moduleListData) => {
$('loading-message').hidden = 'hidden';
$('body-container').hidden = '';
renderTemplate(moduleListData);
});
}
// Get data and have it displayed upon loading.
document.addEventListener('DOMContentLoaded', requestNaClInfo);
})();