| 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": "drawer-view", |
| 17 "id": "remote-devices", |
| 18 "title": "Node connection", |
| 19 "persistence": "closeable", |
| 20 "order": 50, |
| 21 "className": "Devices.DevicesView", |
| 22 "condition": "nodeFrontend", |
| 23 "tags": "node, localhost" |
| 12 } | 24 } |
| 13 ], | 25 ], |
| 14 "dependencies": ["platform", "ui", "host", "components"], | 26 "dependencies": ["platform", "ui", "host", "components"], |
| 15 "scripts": [ | 27 "scripts": [ |
| 16 "DevicesView.js" | 28 "DevicesView.js" |
| 17 ], | 29 ], |
| 18 "resources": [ | 30 "resources": [ |
| 19 "devicesView.css" | 31 "devicesView.css" |
| 20 ] | 32 ] |
| 21 } | 33 } |
| OLD | NEW |