projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b946f0
)
Mobile: client_js darf nicht versuchen den Header zu scrollen
author
Sven Schöling
<s.schoeling@googlemail.com>
Fri, 26 Mar 2021 18:20:43 +0000
(19:20 +0100)
committer
Sven Schöling
<s.schoeling@googlemail.com>
Fri, 25 Jun 2021 13:51:32 +0000
(15:51 +0200)
js/client_js.js
patch
|
blob
|
history
diff --git
a/js/client_js.js
b/js/client_js.js
index
d231d10
..
c9a1524
100644
(file)
--- a/
js/client_js.js
+++ b/
js/client_js.js
@@
-8,7
+8,7
@@
namespace("kivi", function(ns) {
ns.display_flash = function(type, message, noscroll) {
$('#flash_' + type + '_content').text(message);
$('#flash_' + type).show();
- if (!noscroll) {
+ if (!noscroll
&& $('#frame-header')[0]
) {
$('#frame-header')[0].scrollIntoView();
}
};