diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2018-12-11 09:06:43 -0500 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2018-12-11 09:06:43 -0500 |
| commit | f05b21f486a582dd7fbb57f0e45977d0ed398dc5 (patch) | |
| tree | cf927af797e0ce641babbf6b8514765fb0df7113 | |
| parent | 64e5c3f5ebbf3561d78c8eff47bb28ddd5b2381d (diff) | |
removed MobileAccessibility - doesn't work anymore (compile error)
| -rw-r--r-- | config.xml | 5 | ||||
| -rw-r--r-- | package.json | 11 | ||||
| -rw-r--r-- | www/js/EventCtrl.js | 4 | ||||
| -rwxr-xr-x | www/js/app.js | 4 |
4 files changed, 6 insertions, 18 deletions
@@ -140,7 +140,6 @@ <plugin name="cordova-plugin-websocket" spec="^0.12.2" /> <plugin name="cordova-plugin-whitelist" spec="^1.3.2" /> <plugin name="cordova-sqlite-storage" spec="^1.5.3" /> - <plugin name="phonegap-plugin-mobile-accessibility" spec="^1.0.5" /> <plugin name="cordova-plugin-touch-id" spec="^3.2.0" /> <plugin name="cordova-plugin-android-fingerprint-auth" spec="^1.4.0" /> <plugin name="cordova-plugin-device" spec="^2.0.1" /> @@ -163,10 +162,6 @@ <plugin name="cordova-plugin-advanced-websocket" spec="^1.1.3" /> <plugin name="cordova-plugin-network-information" spec="^2.0.1" /> <plugin name="cordova-plugin-x-socialsharing" spec="^5.4.1" /> - <plugin name="cordova-plugin-ionic-webview" spec="https://github.com/pliablepixels/cordova-plugin-ionic-webview.git"> - <variable name="ANDROID_SUPPORT_ANNOTATIONS_VERSION" value="27.+" /> - </plugin> <plugin name="cordova-plugin-media-pp-fork" spec="^1.0.2-dev" /> - <engine name="android" spec="^6.4.0" /> <engine name="ios" spec="~4.5.5" /> </widget> diff --git a/package.json b/package.json index 0048ab81..a3d20321 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,12 @@ { "name": "zmninjapro", "description": "Home security mobile app for ZoneMinder", - "version":"1.3.035", + "version": "1.3.035", "displayName": "zmNinja", "author": "Pliable Pixels", "license": "custom see LICENSE.md", "cordova": { "platforms": [ - "android", "ios" ], "plugins": { @@ -27,7 +26,6 @@ "cordova-plugin-websocket": {}, "cordova-plugin-whitelist": {}, "cordova-sqlite-storage": {}, - "phonegap-plugin-mobile-accessibility": {}, "cordova-plugin-touch-id": {}, "cordova-plugin-android-fingerprint-auth": {}, "cordova-plugin-network-information": {}, @@ -50,15 +48,11 @@ }, "cordova-plugin-advanced-websocket": {}, "cordova-plugin-x-socialsharing": {}, - "cordova-plugin-ionic-webview": { - "ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+" - }, "cordova-plugin-media-pp-fork": {} } }, "dependencies": { "clivas": "^0.2.0", - "cordova-android": "^6.4.0", "cordova-ios": "~4.5.5", "cordova-library-helper-pp-fork": "^1.0.1", "cordova-plugin-add-swift-support": "^1.7.2", @@ -67,6 +61,7 @@ "cordova-plugin-android-fingerprint-auth": "^1.4.0", "cordova-plugin-android-permissions": "^1.0.0", "cordova-plugin-app-version": "^0.1.9", + "cordova-plugin-certificates-pp-fork": "^0.9.1", "cordova-plugin-cloud-settings": "^1.0.4", "cordova-plugin-customurlscheme": "^4.3.0", "cordova-plugin-device": "^2.0.1", @@ -77,7 +72,6 @@ "cordova-plugin-inappbrowser": "^1.7.1", "cordova-plugin-insomnia": "^4.3.0", "cordova-plugin-ionic-keyboard": "^2.1.2", - "cordova-plugin-ionic-webview": "git+https://github.com/pliablepixels/cordova-plugin-ionic-webview.git", "cordova-plugin-media-pp-fork": "^1.0.2-dev", "cordova-plugin-multi-window": "0.0.3", "cordova-plugin-network-information": "^2.0.1", @@ -99,7 +93,6 @@ "menu": "^0.2.5", "minimist": "^1.2.0", "mkdirp": "^0.5.1", - "phonegap-plugin-mobile-accessibility": "^1.0.5", "phonegap-plugin-push": "~2.1.3" }, "devDependencies": { diff --git a/www/js/EventCtrl.js b/www/js/EventCtrl.js index f53d6e63..157f47d8 100644 --- a/www/js/EventCtrl.js +++ b/www/js/EventCtrl.js @@ -202,8 +202,8 @@ angular.module('zmApp.controllers') // note that there may be a delay as its a callback - so might involve // a UI jiggle - if (window.cordova) - MobileAccessibility.getTextZoom(getTextZoomCallback); + /* if (window.cordova) + MobileAccessibility.getTextZoom(getTextZoomCallback);*/ eventsListDetailsHeight = parseInt(zm.eventsListDetailsHeight * $rootScope.textScaleFactor); eventsListScrubHeight = parseInt(zm.eventsListScrubHeight * $rootScope.textScaleFactor); diff --git a/www/js/app.js b/www/js/app.js index 176b5030..17cdea09 100755 --- a/www/js/app.js +++ b/www/js/app.js @@ -1886,8 +1886,8 @@ angular.module('zmApp', [ //console.log("Mobile acc"); - if (window.cordova) - MobileAccessibility.getTextZoom(getTextZoomCallback); + /* if (window.cordova) + MobileAccessibility.getTextZoom(getTextZoomCallback);*/ // $rootScope.lastState = "events"; //$rootScope.lastStateParam = "0"; |
