@blotoutio/providers-facebook-sdk 0.6.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +6 -9
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -102,21 +102,18 @@ var ProvidersFacebookSdk = (function () {
|
|
|
102
102
|
});
|
|
103
103
|
};
|
|
104
104
|
|
|
105
|
-
|
|
105
|
+
const data = {
|
|
106
|
+
name: 'facebook',
|
|
106
107
|
tag,
|
|
107
108
|
init,
|
|
108
109
|
};
|
|
109
110
|
if (window) {
|
|
110
|
-
if (!window.
|
|
111
|
-
window.
|
|
111
|
+
if (!window.edgetagProviders) {
|
|
112
|
+
window.edgetagProviders = [];
|
|
112
113
|
}
|
|
113
|
-
window.
|
|
114
|
-
name: 'facebook',
|
|
115
|
-
tag,
|
|
116
|
-
init,
|
|
117
|
-
});
|
|
114
|
+
window.edgetagProviders.push(data);
|
|
118
115
|
}
|
|
119
116
|
|
|
120
|
-
return
|
|
117
|
+
return data;
|
|
121
118
|
|
|
122
119
|
})();
|