src/Tools/VSCode/extension/media/documentation.js
changeset 83390 05abe5a82410
parent 83389 8d9c494b78cf
equal deleted inserted replaced
83389:8d9c494b78cf 83390:05abe5a82410
    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   })();