Fix CHOICE_REGEX to allow space

This commit is contained in:
Olivier Perez 2016-04-27 01:01:23 +02:00
parent 8a3e74cadb
commit 11ff60a170

View File

@ -22,7 +22,7 @@ const VERSION = '0.9';
// Regex
const POLL_REGEX = '/^[a-z0-9]+$/i';
const CHOICE_REGEX = '/^[012]$/';
const CHOICE_REGEX = '/^[ 012]$/';
const BOOLEAN_REGEX = '/^(on|off|true|false|1|0)$/i';
const BOOLEAN_TRUE_REGEX = '/^(on|true|1)$/i';
const EDITABLE_CHOICE_REGEX = '/^[0-2]$/';