aboutsummaryrefslogtreecommitdiffstats
path: root/lib/prompts.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/prompts.js')
-rw-r--r--lib/prompts.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/prompts.js b/lib/prompts.js
index 3f34e0d..18edaaf 100644
--- a/lib/prompts.js
+++ b/lib/prompts.js
@@ -1,5 +1,5 @@
-/*global exports: false, require: false, console: false */
-/*jslint onevar: false */
+/* global exports: false, require: false, console: false */
+/* jslint onevar: false */
// Released under the MIT/X11 license
// http://www.opensource.org/licenses/mit-license.php
"use strict";
@@ -11,7 +11,7 @@ var promptTitle = "Bugzilla Triage Script";
/**
* shows the text in a simple window
- *
+ *
* @return none
*/
exports.alert = function alert(msg) {
@@ -22,7 +22,7 @@ exports.alert = function alert(msg) {
/**
* general prompts for a string method
- *
+ *
* @return String with the password
*/
exports.prompt = function prompt(prompt, defaultValue) {
@@ -44,7 +44,7 @@ exports.prompt = function prompt(prompt, defaultValue) {
/**
* returns password with a special password
- *
+ *
* @return String with the password
*/
exports.promptPassword = function promptPassword(prompt) {
@@ -98,7 +98,7 @@ exports.promptYesNoCancel = function promptOKNoCancel(prompt) {
};
/**
- *
+ *
* documentation is https://developer.mozilla.org/en/NsIFilePicker
*/
exports.promptFileOpenPicker = function promptFilePicker(win) {