Skip to content
Snippets Groups Projects
Commit 7d571de0 authored by Dixon Fred's avatar Dixon Fred
Browse files

Merge pull request #745 from capilkey/change-quickpoll-regex

changed quick poll regex to match only one character
parents a1809892 445b3761
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ package org.bigbluebutton.modules.polling.views {
}
private function parseSlideText(text:String):void {
var regEx:RegExp = new RegExp("\n[^\s]+[\.\)]", "g");
var regEx:RegExp = new RegExp("\n[^\s][\.\)]", "g");
var matchedArray:Array = text.match(regEx);
LOGGER.debug("Parse Result: {0} {1}", [matchedArray.length, matchedArray.join(" ")]);
if (matchedArray.length > 1) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment