META-INF.resources.bower_components.cldrjs.src.supplemental.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-globalize Show documentation
Show all versions of jwebmp-globalize Show documentation
The JWebSwing implementation for a full Globalization
define([
"./core",
"./supplemental/main"
], function (Cldr, supplementalMain) {
var initSuper = Cldr.prototype.init;
/**
* .init() automatically ran on construction.
*
* Overload .init().
*/
Cldr.prototype.init = function () {
initSuper.apply(this, arguments);
this.supplemental = supplementalMain(this);
};
return Cldr;
});