From 76d8c03ff92273d9e6574330bdcc91a6ee95968a Mon Sep 17 00:00:00 2001 From: Antonin Stefanutti Date: Mon, 12 Feb 2018 22:12:45 +0100 Subject: [PATCH] Polish generic plugin media option help message --- plugins/generic.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/generic.js b/plugins/generic.js index 4f7cbb3..fd2d9e3 100644 --- a/plugins/generic.js +++ b/plugins/generic.js @@ -5,12 +5,6 @@ const { pause } = require('../libs/util'); exports.options = { - media: { - default : 'screen', - choices : ['screen', 'print'], - metavar : '', - help : "'print' or 'screen' to set CSS media type", - }, key : { default : 'ArrowRight', metavar : '', @@ -20,7 +14,13 @@ exports.options = { full : 'max-slides', metavar : '', help : 'Maximum number of slides to export', - } + }, + media: { + default : 'screen', + choices : ['screen', 'print'], + metavar : '', + help : 'CSS media type to emulate, one of [print, screen]', + }, }; exports.help =