diff options
author | Chad Weider <cweider@oofn.net> | 2012-01-15 17:23:48 -0800 |
---|---|---|
committer | Chad Weider <cweider@oofn.net> | 2012-01-22 09:48:21 -0800 |
commit | 2b5d7a0048c1b5718b9870eed059f77a9c513136 (patch) | |
tree | 22f248f3f170526e29f3aa9bca6f8cc251d6ec5b /static/js/domline.js | |
parent | 003c2a59aaecbcc6a0da3da6d956648496d6b41d (diff) | |
download | etherpad-lite-2b5d7a0048c1b5718b9870eed059f77a9c513136.zip |
All files export their public interface if `exports` is available.
Diffstat (limited to 'static/js/domline.js')
-rw-r--r-- | static/js/domline.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/static/js/domline.js b/static/js/domline.js index 84aeb4a8..7ebf5b35 100644 --- a/static/js/domline.js +++ b/static/js/domline.js @@ -310,3 +310,7 @@ domline.processSpaces = function(s, doesWrap) } return parts.join(''); }; + +if (typeof exports !== 'undefined') { +exports.domline = domline; +} |