diff --git a/actions/qvitter.php b/actions/qvitter.php index 00be9c5..a537631 100644 --- a/actions/qvitter.php +++ b/actions/qvitter.php @@ -480,7 +480,7 @@ class QvitterAction extends ApiAction - + diff --git a/js/lib/xregexp-all-3.0.0-pre.js b/js/lib/xregexp-all-3.0.0-pre.js new file mode 100644 index 0000000..3028f92 --- /dev/null +++ b/js/lib/xregexp-all-3.0.0-pre.js @@ -0,0 +1,4230 @@ +/*! + * XRegExp-All 3.0.0-pre + * + * Steven Levithan (c) 2012-2015 MIT License + */ + +// Module systems magic dance. Don't use strict mode for this function, so it can assign to global. +;(function(root, definition) { + var self; + + // RequireJS + if (typeof define === 'function') { + define(definition); + // CommonJS + } else if (typeof exports === 'object') { + self = definition(); + // Use Node.js's `module.exports`. This supports both `require('xregexp')` and + // `require('xregexp').XRegExp` + (typeof module === 'object' ? (module.exports = self) : exports).XRegExp = self; + //