Skip to content

Commit

Permalink
A couple more socialsharing plugin removals
Browse files Browse the repository at this point in the history
Missed a call in the startup code
  • Loading branch information
eb1 committed Feb 1, 2024
1 parent 37389fb commit 55e83c4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
<preference name="SplashMaintainAspectRatio" value="false" />
<preference name="SplashShowOnlyFirstTime" value="false" />
<preference name="AutoHideSplashScreen" value="true" />
<!-- IMPORTANT NOTE: sqlite plugin seems to collide with the ES6 promise plugin, currently a dependency of the plain-vanilla
social sharing plugin (basically, SQLite doesn't launch and the app doesn't start). As of 12/27/2023, we're using a fork
of the social sharing plugin from https://github.com/IsraelHikingMap/corodova-plugin-socialsharing-android12 -->
<platform name="android">
<plugin name="cordova-sqlite-evcore-extbuild-free" spec="^0.15.1" />
<plugin name="cordova-plugin-statusbar" spec="^2.4.3" />
Expand Down
7 changes: 0 additions & 7 deletions www/js/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,13 +191,6 @@ define(function (require) {
cordova.file.syncedDataDirectory
];
}
// social sharing plugin / iPad popover coords
if (device && (device.platform !== "browser")) {
window.plugins.socialsharing.iPadPopupCoordinates = function () {
var rect = document.getElementById('share_button').getBoundingClientRect();
return rect.left + "," + rect.top + "," + rect.width + "," + rect.height;
};
}
// create / open the database
if (device && (device.platform !== "browser")) {
if (device.platform === "browser") {
Expand Down

0 comments on commit 55e83c4

Please sign in to comment.