| Index: ppapi/examples/enumerate_devices/enumerate_devices.html
|
| diff --git a/ppapi/examples/enumerate_devices/enumerate_devices.html b/ppapi/examples/enumerate_devices/enumerate_devices.html
|
| index d77cadbb0ae08583a37c9d036cc448f77e4c4adc..6afd94dffc1e5bc7e8c210f280b21faa30c8c3bd 100644
|
| --- a/ppapi/examples/enumerate_devices/enumerate_devices.html
|
| +++ b/ppapi/examples/enumerate_devices/enumerate_devices.html
|
| @@ -22,10 +22,10 @@
|
| if (devices_data.length > 0)
|
| device_array = devices_data.split('#__#');
|
| else
|
| - devices_array = [];
|
| + device_array = [];
|
|
|
| var list = document.getElementById('device_list');
|
| - if (devices_array.length == 0)
|
| + if (device_array.length == 0)
|
| list.innerHTML = 'No devices.';
|
| for (var i = 0; i < device_array.length; ++i) {
|
| var list_item = document.createElement('li');
|
|
|