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
a301c96c
Commit
a301c96c
authored
Nov 10, 2014
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SharePanel: fix to share feature, Closes #1035
parent
f9c3cdab
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
src/app/controllers/sharePanelCtrl.js
+6
-4
src/app/services/dashboard/dashboardViewStateSrv.js
+2
-4
No files found.
src/app/controllers/sharePanelCtrl.js
View file @
a301c96c
...
@@ -66,11 +66,13 @@ function (angular, _) {
...
@@ -66,11 +66,13 @@ function (angular, _) {
var
paramsArray
=
[];
var
paramsArray
=
[];
_
.
each
(
params
,
function
(
value
,
key
)
{
_
.
each
(
params
,
function
(
value
,
key
)
{
var
str
=
key
;
if
(
value
===
null
)
{
return
;
}
if
(
value
!==
true
)
{
if
(
value
===
true
)
{
str
+=
'='
+
encodeURIComponent
(
value
);
paramsArray
.
push
(
key
);
}
else
{
key
+=
'='
+
encodeURIComponent
(
value
);
paramsArray
.
push
(
key
);
}
}
paramsArray
.
push
(
str
);
});
});
$scope
.
shareUrl
=
baseUrl
+
"?"
+
paramsArray
.
join
(
'&'
)
;
$scope
.
shareUrl
=
baseUrl
+
"?"
+
paramsArray
.
join
(
'&'
)
;
...
...
src/app/services/dashboard/dashboardViewStateSrv.js
View file @
a301c96c
...
@@ -51,9 +51,8 @@ function (angular, _, $) {
...
@@ -51,9 +51,8 @@ function (angular, _, $) {
DashboardViewState
.
prototype
.
getQueryStringState
=
function
()
{
DashboardViewState
.
prototype
.
getQueryStringState
=
function
()
{
var
state
=
$location
.
search
();
var
state
=
$location
.
search
();
state
.
panelId
=
parseInt
(
state
.
panelId
)
||
null
;
state
.
panelId
=
parseInt
(
state
.
panelId
)
||
null
;
state
.
fullscreen
=
state
.
fullscreen
?
true
:
false
;
state
.
fullscreen
=
state
.
fullscreen
?
true
:
null
;
state
.
edit
=
state
.
edit
?
true
:
false
;
state
.
edit
=
(
state
.
edit
===
"true"
||
state
.
edit
===
true
)
||
null
;
return
state
;
return
state
;
};
};
...
@@ -61,7 +60,6 @@ function (angular, _, $) {
...
@@ -61,7 +60,6 @@ function (angular, _, $) {
var
urlState
=
_
.
clone
(
this
.
state
);
var
urlState
=
_
.
clone
(
this
.
state
);
urlState
.
fullscreen
=
this
.
state
.
fullscreen
?
true
:
null
,
urlState
.
fullscreen
=
this
.
state
.
fullscreen
?
true
:
null
,
urlState
.
edit
=
this
.
state
.
edit
?
true
:
null
;
urlState
.
edit
=
this
.
state
.
edit
?
true
:
null
;
return
urlState
;
return
urlState
;
};
};
...
...
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