From 97f8f5ad45a8dfbde27f555eafec5d8318ad67b2 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Fri, 13 May 2011 12:20:05 +0200 Subject: Really Eclipseize formatting. --- lib/prompts.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/prompts.js') 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) { -- cgit