Merge pull request #4861 from OctoHuman/master

Fix alert()
This commit is contained in:
Kevin Sawicki 2016-03-30 12:40:41 -07:00
Родитель 839ab07fd4 116d61185a
Коммит ad67070f23
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -157,11 +157,14 @@ window.open = function(url, frameName, features) {
// Use the dialog API to implement alert(). // Use the dialog API to implement alert().
window.alert = function(message, title) { window.alert = function(message, title) {
var buttons; var buttons;
if (arguments.length == 0) {
message = '';
}
if (title == null) { if (title == null) {
title = ''; title = '';
} }
buttons = ['OK']; buttons = ['OK'];
message = message.toString(); message = String(message);
remote.dialog.showMessageBox(remote.getCurrentWindow(), { remote.dialog.showMessageBox(remote.getCurrentWindow(), {
message: message, message: message,
title: title, title: title,