diff options
Diffstat (limited to 'StoneIsland/plugins/cordova-plugin-firebase/www/firebase-browser.js')
| -rwxr-xr-x | StoneIsland/plugins/cordova-plugin-firebase/www/firebase-browser.js | 119 |
1 files changed, 0 insertions, 119 deletions
diff --git a/StoneIsland/plugins/cordova-plugin-firebase/www/firebase-browser.js b/StoneIsland/plugins/cordova-plugin-firebase/www/firebase-browser.js deleted file mode 100755 index 93e3936f..00000000 --- a/StoneIsland/plugins/cordova-plugin-firebase/www/firebase-browser.js +++ /dev/null @@ -1,119 +0,0 @@ -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();
- }
-};
|
