equal
deleted
inserted
replaced
78 function open_document(platform_path) { |
78 function open_document(platform_path) { |
79 vscode.postMessage({ command: "open_document", platform_path: platform_path }); |
79 vscode.postMessage({ command: "open_document", platform_path: platform_path }); |
80 } |
80 } |
81 |
81 |
82 window.onload = function () { |
82 window.onload = function () { |
83 const state = vscode.getState(); |
83 const state = vscode.getState(); |
84 if (state && state.sections) { |
84 if (state && state.sections) { |
85 update(state.sections); |
85 update(state.sections); |
86 } |
86 } |
87 }; |
87 }; |
88 })(); |
88 })(); |