We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
position
before/after
1 parent d5fc6b5 commit 4e830d7Copy full SHA for 4e830d7
test-smoke/electron/test/main.ts
@@ -739,19 +739,19 @@ Menu.setApplicationMenu(menu); // Must be called within app.on('ready', function
739
740
Menu.buildFromTemplate([
741
{ label: "4", id: "4" },
742
- { label: "5", id: "5" },
743
- { label: "1", id: "1", position: "before=4" },
744
- { label: "2", id: "2" },
+ { label: "5", id: "5", after: ["4"] },
+ { label: "1", id: "1", before: ["4"] },
+ { label: "2", id: "2", },
745
{ label: "3", id: "3" },
746
]);
747
748
749
- { label: "a", position: "endof=letters" },
750
- { label: "1", position: "endof=numbers" },
751
- { label: "b", position: "endof=letters" },
752
- { label: "2", position: "endof=numbers" },
753
- { label: "c", position: "endof=letters" },
754
- { label: "3", position: "endof=numbers" },
+ { label: "a" },
+ { label: "1" },
+ { label: "b" },
+ { label: "2" },
+ { label: "c" },
+ { label: "3" },
755
756
757
// net
vendor/fetch-docs.js
@@ -7,7 +7,7 @@ const mkdirp = require('mkdirp').sync
7
const os = require('os')
8
9
const downloadPath = path.join(os.tmpdir(), 'electron-api-tmp')
10
-const ELECTRON_COMMIT = '7c7543cb39c5a65e3ec49dae1a09f48f963f27bf'
+const ELECTRON_COMMIT = '7a508ca587ecc1f66c51bbce14a5dae6b7147c3c'
11
12
rm(downloadPath)
13
0 commit comments