Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
b6931675
Commit
b6931675
authored
Apr 04, 2018
by
Alexander Zobnin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scrollbar: fix dashboard width updating for different modes
parent
175937a6
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
public/app/core/components/grafana_app.ts
+1
-0
public/app/core/components/scroll/scroll.ts
+8
-2
No files found.
public/app/core/components/grafana_app.ts
View file @
b6931675
...
...
@@ -167,6 +167,7 @@ export function grafanaAppDirective(playlistSrv, contextSrv, $timeout, $rootScop
if
(
sidemenuHidden
)
{
sidemenuHidden
=
false
;
body
.
addClass
(
'sidemenu-open'
);
appEvents
.
emit
(
'toggle-inactive-mode'
);
$timeout
(
function
()
{
$rootScope
.
$broadcast
(
'render'
);
},
100
);
...
...
public/app/core/components/scroll/scroll.ts
View file @
b6931675
...
...
@@ -60,10 +60,16 @@ export function geminiScrollbar() {
scope
);
appEvents
.
on
(
'toggle-sidemenu'
,
evt
=>
{
// force updating dashboard width
appEvents
.
on
(
'toggle-sidemenu'
,
forceUpdate
);
appEvents
.
on
(
'toggle-sidemenu-hidden'
,
forceUpdate
);
appEvents
.
on
(
'toggle-view-mode'
,
forceUpdate
);
appEvents
.
on
(
'toggle-kiosk-mode'
,
forceUpdate
);
appEvents
.
on
(
'toggle-inactive-mode'
,
forceUpdate
);
function
forceUpdate
()
{
scrollbar
.
scroll
();
}
);
}
scope
.
$on
(
'$routeChangeSuccess'
,
()
=>
{
lastPos
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment