| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@Common.AppProvider", | 4 "type": "@Common.AppProvider", |
| 5 "className": "Main.SimpleAppProvider", | 5 "className": "Main.SimpleAppProvider", |
| 6 "order": 10 | 6 "order": 10 |
| 7 }, | 7 }, |
| 8 { | 8 { |
| 9 "type": "@UI.ContextMenu.Provider", | 9 "type": "@UI.ContextMenu.Provider", |
| 10 "contextTypes": [ | 10 "contextTypes": [ |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 ] | 197 ] |
| 198 }, | 198 }, |
| 199 { | 199 { |
| 200 "type": "@UI.ToolbarItem.Provider", | 200 "type": "@UI.ToolbarItem.Provider", |
| 201 "separator": true, | 201 "separator": true, |
| 202 "location": "main-toolbar-left", | 202 "location": "main-toolbar-left", |
| 203 "order": 100 | 203 "order": 100 |
| 204 }, | 204 }, |
| 205 { | 205 { |
| 206 "type": "@UI.ToolbarItem.Provider", | 206 "type": "@UI.ToolbarItem.Provider", |
| 207 "className": "Main.Main.NodeIndicator", |
| 208 "order": 2, |
| 209 "location": "main-toolbar-left", |
| 210 "condition": "!nodeFrontend" |
| 211 }, |
| 212 { |
| 213 "type": "@UI.ToolbarItem.Provider", |
| 207 "className": "Main.Main.WarningErrorCounter", | 214 "className": "Main.Main.WarningErrorCounter", |
| 208 "order": 1, | 215 "order": 1, |
| 209 "location": "main-toolbar-right" | 216 "location": "main-toolbar-right" |
| 210 }, | 217 }, |
| 211 { | 218 { |
| 212 "type": "@UI.ToolbarItem.Provider", | 219 "type": "@UI.ToolbarItem.Provider", |
| 213 "separator": true, | 220 "separator": true, |
| 214 "order": 98, | 221 "order": 98, |
| 215 "location": "main-toolbar-right" | 222 "location": "main-toolbar-right" |
| 216 }, | 223 }, |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 "scripts": [ | 438 "scripts": [ |
| 432 "RenderingOptions.js", | 439 "RenderingOptions.js", |
| 433 "SimpleApp.js", | 440 "SimpleApp.js", |
| 434 "GCActionDelegate.js", | 441 "GCActionDelegate.js", |
| 435 "RequestAppBannerActionDelegate.js", | 442 "RequestAppBannerActionDelegate.js", |
| 436 "ExecutionContextSelector.js", | 443 "ExecutionContextSelector.js", |
| 437 "Main.js" | 444 "Main.js" |
| 438 ], | 445 ], |
| 439 "resources": [ | 446 "resources": [ |
| 440 "errorWarningCounter.css", | 447 "errorWarningCounter.css", |
| 448 "nodeIcon.css", |
| 441 "remoteDebuggingTerminatedScreen.css", | 449 "remoteDebuggingTerminatedScreen.css", |
| 442 "renderingOptions.css", | 450 "renderingOptions.css", |
| 443 "targetCrashedScreen.css" | 451 "targetCrashedScreen.css" |
| 444 ] | 452 ] |
| 445 } | 453 } |
| OLD | NEW |