blob: 4f51d77f64cd750732370f147c8550ffadf5fe3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/**
* 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) {
// This is the javascript code that processes the template:
var input = new JsEvalContext(moduleListData);
var output = document.getElementById('flashInfoTemplate');
jstProcess(input, output);
}
/**
* Asks the C++ FlashUIDOMHandler to get details about the Flash and return
* the data in returnFlashInfo() (below).
*/
function requestFlashInfo() {
chrome.send('requestFlashInfo', []);
}
/**
* Called by the WebUI to re-populate the page with data representing the
* current state of Flash.
*/
function returnFlashInfo(moduleListData) {
document.getElementById('loading-message').style.visibility = 'hidden';
document.getElementById('body-container').style.visibility = 'visible';
renderTemplate(moduleListData);
}
// Get data and have it displayed upon loading.
document.addEventListener('DOMContentLoaded', requestFlashInfo);
|