// Copyright 2013 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 dumpDevices(devices) { $('#deviceinfos').empty(); $('#deviceinfos').append(outputDevicesToList(devices)); } function outputDevicesToList(devices) { var table = $('
" + "Name" + " | " + "" + "OS" + " | " + "" + "Id" + " | " + "" + "Type" + " | " + "" + "Chrome Version" + " | " + "
---|---|---|---|---|
" + devices[i].name + " | " + "" + devices[i].os + " | " + "" + devices[i].id + " | " + "" + devices[i].type + " | " + "" + devices[i].chromeVersion + " | " + "