| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "drawer-view", | 5 "location": "drawer-view", |
| 6 "id": "remote-devices", | 6 "id": "remote-devices", |
| 7 "title": "Remote devices", | 7 "title": "Remote devices", |
| 8 "persistence": "closeable", | 8 "persistence": "closeable", |
| 9 "order": 50, | 9 "order": 50, |
| 10 "className": "Devices.DevicesView", | 10 "className": "Devices.DevicesView", |
| 11 "condition": "!v8only", |
| 11 "tags": "usb, android, mobile" | 12 "tags": "usb, android, mobile" |
| 13 }, |
| 14 { |
| 15 "type": "view", |
| 16 "location": "panel", |
| 17 "id": "node-connection", |
| 18 "title": "Connection", |
| 19 "order": 0, |
| 20 "className": "Devices.DevicesView.Panel", |
| 21 "condition": "nodeFrontend", |
| 22 "tags": "node" |
| 12 } | 23 } |
| 13 ], | 24 ], |
| 14 "dependencies": ["platform", "ui", "host", "components"], | 25 "dependencies": ["platform", "ui", "host", "components"], |
| 15 "scripts": [ | 26 "scripts": [ |
| 16 "DevicesView.js" | 27 "DevicesView.js" |
| 17 ], | 28 ], |
| 18 "resources": [ | 29 "resources": [ |
| 19 "devicesView.css" | 30 "devicesView.css" |
| 20 ] | 31 ] |
| 21 } | 32 } |
| OLD | NEW |