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
1618b095
Commit
1618b095
authored
Aug 03, 2018
by
Tobias Skarhed
Committed by
Torkel Ödegaard
Aug 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use and add keybard shortcut
parent
63fa9fdc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
+18
-3
public/app/core/services/keybindingSrv.ts
+15
-1
public/app/features/dashboard/dashboard_ctrl.ts
+3
-2
No files found.
public/app/core/services/keybindingSrv.ts
View file @
1618b095
...
...
@@ -15,7 +15,14 @@ export class KeybindingSrv {
timepickerOpen
=
false
;
/** @ngInject */
constructor
(
private
$rootScope
,
private
$location
,
private
datasourceSrv
,
private
timeSrv
,
private
contextSrv
)
{
constructor
(
private
$rootScope
,
private
$location
,
private
datasourceSrv
,
private
timeSrv
,
private
contextSrv
,
private
$window
)
{
// clear out all shortcuts on route change
$rootScope
.
$on
(
'$routeChangeSuccess'
,
()
=>
{
Mousetrap
.
reset
();
...
...
@@ -259,6 +266,13 @@ export class KeybindingSrv {
this
.
bind
(
'd v'
,
()
=>
{
appEvents
.
emit
(
'toggle-view-mode'
);
});
//Autofit panels
this
.
bind
(
'd a'
,
()
=>
{
this
.
$location
.
search
(
'autofitpanels'
,
this
.
$location
.
search
().
autofitpanels
?
null
:
true
);
//Force reload
this
.
$window
.
location
.
href
=
this
.
$location
.
absUrl
();
});
}
}
...
...
public/app/features/dashboard/dashboard_ctrl.ts
View file @
1618b095
...
...
@@ -24,7 +24,8 @@ export class DashboardCtrl implements PanelContainer {
private
unsavedChangesSrv
,
private
dashboardViewStateSrv
,
public
playlistSrv
,
private
panelLoader
private
panelLoader
,
private
$location
)
{
// temp hack due to way dashboards are loaded
// can't use controllerAs on route yet
...
...
@@ -64,7 +65,7 @@ export class DashboardCtrl implements PanelContainer {
this
.
dashboard
=
dashboard
;
this
.
dashboard
.
processRepeats
();
if
(
window
.
location
.
search
.
search
(
'autofitpanels'
)
!==
-
1
)
{
if
(
this
.
$location
.
search
().
autofitpanels
)
{
let
maxRows
=
Math
.
max
(
...
this
.
dashboard
.
panels
.
map
(
panel
=>
{
return
panel
.
gridPos
.
h
+
panel
.
gridPos
.
y
;
...
...
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