diff --git a/framework/assets/js/phonegap.js.base b/framework/assets/js/phonegap.js.base index 9d39aa94..c9181b5e 100755 --- a/framework/assets/js/phonegap.js.base +++ b/framework/assets/js/phonegap.js.base @@ -893,3 +893,16 @@ PhoneGap.includeJavascript = function(jsfile, successCallback) { el.src = jsfile; id.appendChild(el); }; + + +/** + * This class is provided to bridge the gap between the way plugins were setup in 0.9.3 and 0.9.4. + * Users should be calling navigator.add.addService() instead of PluginManager.addService(). + * @class + * @deprecated + */ +var PluginManager = { + addService: function(serviceType, className) { + navigator.app.addService(serviceType, className); + } +};