Merge pull request #8086 from deepak1556/devtools_remove_workspace_patch

override window.confirm in devtools
This commit is contained in:
Kevin Sawicki 2016-11-29 13:31:21 -08:00 коммит произвёл GitHub
Родитель 21f0b2bd2a 72e559458f
Коммит 477ac313ab
1 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -6,6 +6,19 @@ window.onload = function () {
window.WebInspector.createFileSelectorElement = createFileSelectorElement
}
window.confirm = function (message, title) {
const {dialog} = require('electron').remote
if (title == null) {
title = ''
}
return !dialog.showMessageBox({
message: message,
title: title,
buttons: ['OK', 'Cancel'],
cancelId: 1
})
}
const convertToMenuTemplate = function (items) {
return items.map(function (item) {
const transformed = item.type === 'subMenu' ? {