mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-15 01:08:17 -05:00
16 lines
299 B
JavaScript
16 lines
299 B
JavaScript
function localizable() {
|
|
}
|
|
|
|
localizable.prototype.get = function(name, success)
|
|
{
|
|
PhoneGap.exec("localizable.get", name,GetFunctionName(success));
|
|
};
|
|
|
|
PhoneGap.addConstructor(function()
|
|
{
|
|
if(!window.plugins)
|
|
{
|
|
window.plugins = {};
|
|
}
|
|
window.plugins.localizable = new localizable();
|
|
}); |