diff options
author | Ehsan Akhgari <ehsan@mozilla.com> | 2010-05-31 00:17:31 -0400 |
---|---|---|
committer | Ehsan Akhgari <ehsan@mozilla.com> | 2010-05-31 00:17:31 -0400 |
commit | 3c1862264b3c3716c1b9dcbcaec650a2d04fd9ec (patch) | |
tree | 091bc671c82428488166afbc5420cca305f57ace /lib | |
parent | 147d22ec1d1017131292cb537f9a35de47c9cbb9 (diff) | |
download | bugzilla-triage-3c1862264b3c3716c1b9dcbcaec650a2d04fd9ec.tar.gz |
Correct the exported function name
Diffstat (limited to 'lib')
-rw-r--r-- | lib/clipboard.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/clipboard.js b/lib/clipboard.js index 506de03..2d14b2e 100644 --- a/lib/clipboard.js +++ b/lib/clipboard.js @@ -34,7 +34,7 @@ * * ***** END LICENSE BLOCK ***** */ -var setMethod = exports.setMethod = function setMethod(content, flavor) { +var setMethod = exports.set = function setMethod(content, flavor) { if (typeof(flavor) == "undefined") { flavor = "plain"; } |