summaryrefslogtreecommitdiff
path: root/StoneIsland/plugins/cordova-plugin-firebase/www/firebase-browser.js
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/plugins/cordova-plugin-firebase/www/firebase-browser.js')
-rwxr-xr-xStoneIsland/plugins/cordova-plugin-firebase/www/firebase-browser.js119
1 files changed, 119 insertions, 0 deletions
diff --git a/StoneIsland/plugins/cordova-plugin-firebase/www/firebase-browser.js b/StoneIsland/plugins/cordova-plugin-firebase/www/firebase-browser.js
new file mode 100755
index 00000000..93e3936f
--- /dev/null
+++ b/StoneIsland/plugins/cordova-plugin-firebase/www/firebase-browser.js
@@ -0,0 +1,119 @@
+exports.getInstanceId = function(success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.getToken = function(success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.onNotificationOpen = function(success, error) {
+};
+
+exports.onTokenRefresh = function(success, error) {
+};
+
+exports.grantPermission = function(success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.setBadgeNumber = function(number, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.getBadgeNumber = function(success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.subscribe = function(topic, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.unsubscribe = function(topic, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.logEvent = function(name, params, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.logError = function(message, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.setScreenName = function(name, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.setUserId = function(id, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.setUserProperty = function(name, value, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.activateFetched = function (success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.fetch = function (cacheExpirationSeconds, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.getByteArray = function (key, namespace, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.getValue = function (key, namespace, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.getInfo = function (success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.setConfigSettings = function (settings, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};
+
+exports.setDefaults = function (defaults, namespace, success, error) {
+ if (typeof success === 'function') {
+ success();
+ }
+};