aboutsummaryrefslogtreecommitdiff
path: root/web/app/controller
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2020-07-07 22:36:10 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2020-07-07 22:36:10 -0700
commite6a115dfed5a7ffca76924e954c67205a90e46a2 (patch)
treee7f9b85eb0be03888be479ff1f3cb7da68ab149b /web/app/controller
parent2a22ce7c01b5e75c029705ff043c9c08ba7592cc (diff)
downloadetbsa-traccar-web-e6a115dfed5a7ffca76924e954c67205a90e46a2.tar.gz
etbsa-traccar-web-e6a115dfed5a7ffca76924e954c67205a90e46a2.tar.bz2
etbsa-traccar-web-e6a115dfed5a7ffca76924e954c67205a90e46a2.zip
Move update to static view
Diffstat (limited to 'web/app/controller')
-rw-r--r--web/app/controller/Root.js12
1 files changed, 8 insertions, 4 deletions
diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js
index 7c0345a..c1700aa 100644
--- a/web/app/controller/Root.js
+++ b/web/app/controller/Root.js
@@ -108,7 +108,7 @@ Ext.define('Traccar.controller.Root', {
},
loadApp: function () {
- var attribution, eventId;
+ var updateView, attributionView, eventId;
if (window.webkit && window.webkit.messageHandlers.appInterface) {
window.webkit.messageHandlers.appInterface.postMessage('login');
@@ -152,9 +152,13 @@ Ext.define('Traccar.controller.Root', {
this.asyncUpdate(true);
}
});
- attribution = Ext.get('attribution');
- if (attribution) {
- attribution.remove();
+ updateView = Ext.get('update');
+ if (updateView) {
+ updateView.remove();
+ }
+ attributionView = Ext.get('attribution');
+ if (attributionView) {
+ attributionView.remove();
}
if (Traccar.app.isMobile()) {
Ext.create('widget.mainMobile');