Sha256: 41d0489d8665bb8fdffc0947ae5a165a4d39614ae2213ed609e54aac968bf656
Contents?: true
Size: 1.21 KB
Versions: 12
Compression:
Stored size: 1.21 KB
Contents
/** * @author Tanin */ var whowishWordVariables = { idRunner: 0, separator: "_____" }; whowishWordVariables.attributeValuePattern = new RegExp("^__whowishWord__" + whowishWordVariables.separator + "(.+)" + whowishWordVariables.separator + "(.*)"); whowishWordVariables.whowishWordIdPattern = new RegExp("([^\|]+)(\|(.*))?"); whowishWordVariables.matchers = [ { match: function(element){ return WhowishWordElementGuard.check(element); }, createWhowishWord: function(element) { new WhowishWordElementCreator(element); } }, { match: function(element) { return WhowishWordHtmlGuard.check(element); }, createWhowishWord: function(element) { new WhowishWordHtmlCreator(element); } }, { match: function(element) { return WhowishWordValueGuardAndSanitizer.check(element); }, createWhowishWord: function(element) { new WhowishWordValueCreator(element); } }, { match: function(element) { return WhowishWordTextGuard.check(element); }, createWhowishWord: function(element) { new WhowishWordTextCreator(element); } } ];
Version data entries
12 entries across 12 versions & 1 rubygems