Fix scroll WP
This commit is contained in:
parent
9388ef8794
commit
28f30a5473
3 changed files with 22 additions and 22 deletions
|
|
@ -91,11 +91,26 @@ if [ ! -d $PROJECT ]; then
|
||||||
if [ $CURRENT_OS == "IOS" ]; then
|
if [ $CURRENT_OS == "IOS" ]; then
|
||||||
cordova plugin add phonegap-plugin-push@1.5.3
|
cordova plugin add phonegap-plugin-push@1.5.3
|
||||||
checkOK
|
checkOK
|
||||||
|
|
||||||
|
cordova plugin add cordova-plugin-touch-id && cordova prepare
|
||||||
|
checkOK
|
||||||
|
|
||||||
|
cordova plugin add cordova-plugin-transport-security
|
||||||
|
checkOK
|
||||||
|
|
||||||
|
cordova plugin add cordova-ios-requires-fullscreen
|
||||||
|
checkOK
|
||||||
|
|
||||||
|
cordova plugin add cordova-plugin-disable-bitcode
|
||||||
|
checkOK
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $CURRENT_OS == "ANDROID" ]; then
|
if [ $CURRENT_OS == "ANDROID" ]; then
|
||||||
cordova plugin add phonegap-plugin-push@1.2.3
|
cordova plugin add phonegap-plugin-push@1.2.3
|
||||||
checkOK
|
checkOK
|
||||||
|
|
||||||
|
cordova plugin add cordova-plugin-android-fingerprint-auth
|
||||||
|
checkOK
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cordova plugin add cordova-plugin-globalization
|
cordova plugin add cordova-plugin-globalization
|
||||||
|
|
@ -143,21 +158,6 @@ if [ ! -d $PROJECT ]; then
|
||||||
cordova plugin add cordova-plugin-file
|
cordova plugin add cordova-plugin-file
|
||||||
checkOK
|
checkOK
|
||||||
|
|
||||||
cordova plugin add cordova-plugin-touch-id && cordova prepare
|
|
||||||
checkOK
|
|
||||||
|
|
||||||
cordova plugin add cordova-plugin-transport-security
|
|
||||||
checkOK
|
|
||||||
|
|
||||||
cordova plugin add cordova-ios-requires-fullscreen
|
|
||||||
checkOK
|
|
||||||
|
|
||||||
cordova plugin add cordova-plugin-disable-bitcode
|
|
||||||
checkOK
|
|
||||||
|
|
||||||
cordova plugin add cordova-plugin-android-fingerprint-auth
|
|
||||||
checkOK
|
|
||||||
|
|
||||||
cordova plugin add cordova-plugin-screen-orientation
|
cordova plugin add cordova-plugin-screen-orientation
|
||||||
checkOK
|
checkOK
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,9 @@ input {
|
||||||
body {
|
body {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
-ms-content-zooming: none;
|
-ms-content-zooming: none;
|
||||||
|
/* removes 300ms in IE */
|
||||||
|
-ms-touch-action: manipulation; /* IE10 */
|
||||||
|
touch-action: manipulation; /* IE11+ */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Fix IE 10 */
|
/* Fix IE 10 */
|
||||||
|
|
@ -114,10 +117,7 @@ _:-ms-fullscreen, :root .main {
|
||||||
min-zoom:1;
|
min-zoom:1;
|
||||||
}
|
}
|
||||||
|
|
||||||
body, html {
|
.disable-user-behavior {
|
||||||
-ms-overflow-style: none !important;
|
-ms-touch-action: cross-slide-y !important;
|
||||||
|
touch-action: cross-slide-y !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* removes 300ms in IE */
|
|
||||||
-ms-touch-action: manipulation; /* IE10 /
|
|
||||||
touch-action: manipulation; /* IE11+ */
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ angular.module('copayApp.services').factory('fingerprintService', function($log,
|
||||||
|
|
||||||
var _isAvailable = false;
|
var _isAvailable = false;
|
||||||
|
|
||||||
if (platformInfo.isCordova) {
|
if (platformInfo.isCordova && !platformInfo.isWP) {
|
||||||
window.plugins.touchid = window.plugins.touchid || {};
|
window.plugins.touchid = window.plugins.touchid || {};
|
||||||
window.plugins.touchid.isAvailable(
|
window.plugins.touchid.isAvailable(
|
||||||
function(msg) {
|
function(msg) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue