1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 10:07:19 +00:00

Clarifying comment

This commit is contained in:
Jeremy Ruston 2012-08-30 14:43:13 +01:00
parent 39edb0160e
commit ec2633a241

View File

@ -168,7 +168,7 @@ $tw.utils.parseDate = function(value) {
}
};
// Parse a string array from a bracketted list
// Parse a string array from a bracketted list. For example "OneTiddler [[Another Tiddler]] LastOne"
$tw.utils.parseStringArray = function(value) {
if(typeof value === "string") {
var memberRegExp = /(?:\[\[([^\]]+)\]\])|([^\s]+)/mg,