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 4e830d7 commit 6f768ecCopy full SHA for 6f768ec
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", after: ["4"] },
743
- { label: "1", id: "1", before: ["4"] },
744
- { label: "2", id: "2", },
+ { label: "5", id: "5" },
+ { label: "1", id: "1", position: "before=4" },
+ { label: "2", id: "2" },
745
{ label: "3", id: "3" },
746
]);
747
748
749
- { label: "a" },
750
- { label: "1" },
751
- { label: "b" },
752
- { label: "2" },
753
- { label: "c" },
754
- { label: "3" },
+ { label: "a", position: "endof=letters" },
+ { label: "1", position: "endof=numbers" },
+ { label: "b", position: "endof=letters" },
+ { label: "2", position: "endof=numbers" },
+ { label: "c", position: "endof=letters" },
+ { label: "3", position: "endof=numbers" },
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 = '7a508ca587ecc1f66c51bbce14a5dae6b7147c3c'
+const ELECTRON_COMMIT = '7c7543cb39c5a65e3ec49dae1a09f48f963f27bf'
11
12
rm(downloadPath)
13
0 commit comments