Commit a2c70b47 authored by JC Brand's avatar JC Brand

Bugfix. factory isn't defined.

parent b61c9367
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* This file can be used if no locale support is required. * This file can be used if no locale support is required.
*/ */
(function (root, factory) { (function (root, factory) {
define("locales", ['jed'], function (jed) { define("locales", ['jed'], function (Jed) {
var translations = { var translations = {
"domain": "converse", "domain": "converse",
"locale_data": { "locale_data": {
...@@ -15,6 +15,6 @@ ...@@ -15,6 +15,6 @@
} }
} }
}; };
root.locales = { 'en': factory(new Jed(translations)) }; root.locales = { 'en': new Jed(translations) };
}); });
})(this); })(this);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment