Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
6391d9261d | |||
5dd6ec9403 | |||
c617940c40 | |||
c1ffdc7a5d | |||
d006684147 | |||
07614c76f6 |
@ -1,5 +1,5 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<widget id="com.netsyms.apps.Mobile" version="2.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
|
||||
<widget id="com.netsyms.apps.Mobile" version="2.0.3" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
|
||||
<name>Netsyms</name>
|
||||
<description>
|
||||
Securely use the Netsyms Apps from your phone or tablet.
|
||||
@ -33,7 +33,7 @@
|
||||
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
|
||||
<application android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" />
|
||||
</edit-config>
|
||||
<resource-file src="res/android/values/ic_launcher_background.xml" target="app/src/main/res/values/ic_launcher_background.xml" />
|
||||
<resource-file src="res/android/drawable/ic_launcher_background.xml" target="app/src/main/res/drawable/ic_launcher_background.xml" />
|
||||
<resource-file src="res/android/drawable/ic_launcher_foreground.xml" target="app/src/main/res/drawable/ic_launcher_foreground.xml" />
|
||||
<resource-file src="res/android/mipmap-anydpi-v26/ic_launcher.xml" target="app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml" />
|
||||
<resource-file src="res/android/mipmap-anydpi-v26/ic_launcher_round.xml" target="app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml" />
|
||||
|
@ -46,7 +46,7 @@ made subject to such option by the copyright holder.
|
||||
<!--
|
||||
Generated file; DO NOT EDIT.
|
||||
-->
|
||||
<project name="BusinessMobile" basedir="..">
|
||||
<project name="NetsymsMobile" basedir="..">
|
||||
<property file="nbproject/configs/${config}.properties" />
|
||||
|
||||
<scriptdef name="checkVersion" language="javascript">
|
||||
|
@ -1,8 +1,8 @@
|
||||
auxiliary.org-netbeans-modules-cordova.cordova_5f_build_5f_script_5f_version=52
|
||||
auxiliary.org-netbeans-modules-cordova.phonegap=false
|
||||
file.reference.BusinessMobile-test=test
|
||||
file.reference.BusinessMobile-www=www
|
||||
file.reference.NetsymsMobile-test=test
|
||||
file.reference.NetsymsMobile-www=www
|
||||
files.encoding=UTF-8
|
||||
project.licensePath=nbproject/mplheader.txt
|
||||
site.root.folder=${file.reference.BusinessMobile-www}
|
||||
test.folder=${file.reference.BusinessMobile-test}
|
||||
site.root.folder=${file.reference.NetsymsMobile-www}
|
||||
test.folder=${file.reference.NetsymsMobile-test}
|
||||
|
@ -1,4 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="ic_launcher_background">#2196F3</color>
|
||||
</resources>
|
@ -1,6 +1,6 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<resources>
|
||||
<string name="app_name">Business F7</string>
|
||||
<string name="app_name">Netsyms</string>
|
||||
<string name="launcher_name">@string/app_name</string>
|
||||
<string name="activity_name">@string/launcher_name</string>
|
||||
</resources>
|
||||
|
@ -21,7 +21,7 @@
|
||||
|
||||
<script src="cordova.js"></script>
|
||||
|
||||
<script src="vendor/js/jquery-3.2.1.min.js"></script>
|
||||
<script src="vendor/js/jquery-3.4.1.min.js"></script>
|
||||
<script src="vendor/js/framework7.min.js"></script>
|
||||
<script src="vendor/js/fontawesome/fontawesome.min.js"></script>
|
||||
<script src="vendor/js/fontawesome/solid.min.js"></script>
|
||||
|
@ -49,14 +49,14 @@ function recoveraccounts(callback) {
|
||||
/**
|
||||
* Switch to a different account.
|
||||
* @param {int} account The selected account index from localStorage.getItem('accounts')
|
||||
* @param {boolean} showmsg Whether to show the "switched accounts" alert dialog. Default True.
|
||||
* @param {boolean} showmsg [HAS NO EFFECT] Whether to show the "switched accounts" alert dialog. Default True.
|
||||
* @returns {undefined}
|
||||
*/
|
||||
function switchaccount(account, showmsg) {
|
||||
if (typeof showmsg != 'boolean') {
|
||||
showmsg = true;
|
||||
}
|
||||
// If there isn't an accounts list yet, this shouldi take us back to the setup
|
||||
// If there isn't an accounts list yet, this should take us back to the setup
|
||||
if (!isconfigvalid()) {
|
||||
restartApplication();
|
||||
}
|
||||
@ -74,7 +74,7 @@ function switchaccount(account, showmsg) {
|
||||
|
||||
restartApplication();
|
||||
if (showmsg == true) {
|
||||
navigator.notification.alert("Successfully switched accounts.", null, "Switched", 'OK');
|
||||
//navigator.notification.alert("Successfully switched accounts.", null, "Switched", 'OK');
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -10,7 +10,7 @@ setuppassword = "";
|
||||
setupsynckey = "";
|
||||
setupsyncurl = "";
|
||||
|
||||
netsymscomurl = "https://account.netsyms.com/mobile/index.php";
|
||||
netsymscomurl = "https://apps.netsyms.com/account/mobile/index.php";
|
||||
netsymsbizurl = "https://BIZID.netsyms.biz/accounthub/mobile/index.php";
|
||||
|
||||
if (localStorage.getItem("firstrun") === null) {
|
||||
|
@ -21,7 +21,7 @@
|
||||
<ul id="accountlist">
|
||||
{{#each accounts}}
|
||||
<li class="swipeout accountlist-item" data-id="{{id}}">
|
||||
<div class="item-content swipeout-content">
|
||||
<div class="item-content swipeout-content" data-id="{{id}}">
|
||||
<div class="item-media"><img src="img/accounticons/{{icon}}.svg" width="44"/></div>
|
||||
<div class="item-inner">
|
||||
<div class="item-title-row">
|
||||
|
4
www/vendor/js/jquery-3.2.1.min.js
vendored
4
www/vendor/js/jquery-3.2.1.min.js
vendored
File diff suppressed because one or more lines are too long
2
www/vendor/js/jquery-3.4.1.min.js
vendored
Normal file
2
www/vendor/js/jquery-3.4.1.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user