From 89904bff01a7bc3f87c26ef00fd075d7f8701b8e Mon Sep 17 00:00:00 2001 From: WrinklyNinja Date: Sun, 20 Jul 2014 22:32:31 +0100 Subject: [PATCH] Removed unused function argument. --- resources/report/js/custom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/report/js/custom.js b/resources/report/js/custom.js index 58c45ff2..8f785a26 100644 --- a/resources/report/js/custom.js +++ b/resources/report/js/custom.js @@ -380,7 +380,7 @@ var messageDialogProto = Object.create(HTMLDialogElement.prototype, { showModal: { /* A type of 'error' or 'info' produces an 'OK'-only dialog box. */ - value: function(type, title, text, onClose) { + value: function(type, title, text) { this.querySelector('h1').textContent = title; this.querySelector('p').textContent = text;