OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 /** |
| 6 * Takes the |nearbyUrlsData| input argument which holds metadata for web pages |
| 7 * broadcast by nearby devices. |
| 8 * @param {Object} nearbyUrlsData Information about web pages broadcast by |
| 9 * nearby devices |
| 10 */ |
| 11 function renderTemplate(nearbyUrlsData) { |
| 12 // This is the javascript code that processes the template: |
| 13 jstProcess(new JsEvalContext(nearbyUrlsData), $('physicalWebTemplate')); |
| 14 } |
| 15 |
| 16 function requestNearbyURLs() { |
| 17 chrome.send('requestNearbyURLs'); |
| 18 } |
| 19 |
| 20 function handleClickPhysicalWebItem(node) { |
| 21 // do something |
| 22 } |
| 23 |
| 24 function returnNearbyURLs(nearbyUrlsData) { |
| 25 var bodyContainer = $('body-container'); |
| 26 renderTemplate(nearbyUrlsData); |
| 27 |
| 28 bodyContainer.style.visibility = 'visible'; |
| 29 } |
| 30 |
| 31 document.addEventListener('DOMContentLoaded', requestNearbyURLs); |
OLD | NEW |