Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js/app
diff options
context:
space:
mode:
authorfnuesse <felix.nuesse@t-online.de>2018-12-05 00:55:12 +0300
committerfnuesse <felix.nuesse@t-online.de>2018-12-05 00:55:12 +0300
commit80df7baca05dc3f89aa1f312049141ebbcf8eb47 (patch)
treea4a57ec6cf3bf65d40e4eee2d35642e9b9bf7010 /js/app
parent04596442e8cc5982c3f529f53af41a5868a6896b (diff)
Renamed hidden to template-hidden in css styles
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
Diffstat (limited to 'js/app')
-rw-r--r--js/app/controllers/main.js2
-rw-r--r--js/app/controllers/menu.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/js/app/controllers/main.js b/js/app/controllers/main.js
index 3f894ec2..d54a46d3 100644
--- a/js/app/controllers/main.js
+++ b/js/app/controllers/main.js
@@ -42,7 +42,7 @@
}
$scope.removeHiddenStyles = function(){
- document.getElementById('warning_bar').classList.remove('hidden');
+ document.getElementById('warning_bar').classList.remove('template-hidden');
};
$rootScope.$on('settings_loaded', function(){
diff --git a/js/app/controllers/menu.js b/js/app/controllers/menu.js
index 64a0fb2d..b3960646 100644
--- a/js/app/controllers/menu.js
+++ b/js/app/controllers/menu.js
@@ -43,7 +43,7 @@
};
$scope.removeHiddenStyles = function(){
- document.getElementById('app-navigation').classList.remove('hidden');
+ document.getElementById('app-navigation').classList.remove('template-hidden');
};
$scope.selectedTags = [];