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
dd115acc
Commit
dd115acc
authored
Sep 16, 2013
by
Rashid Khan
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master'
parents
7a0b3dc6
efaff840
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
5 deletions
+8
-5
dist/app/app.js
+0
-0
dist/app/components/require.config.js
+0
-0
dist/app/panels/map/module.js
+0
-0
dist/build.txt
+2
-2
src/app/services/dashboard.js
+6
-3
No files found.
dist/app/app.js
View file @
dd115acc
This source diff could not be displayed because it is too large. You can
view the blob
instead.
dist/app/components/require.config.js
View file @
dd115acc
dist/app/panels/map/module.js
View file @
dd115acc
dist/build.txt
View file @
dd115acc
...
...
@@ -15,11 +15,12 @@ vendor/angular/angular-strap.js
app/components/extend-jquery.js
app/components/settings.js
app/services/alertSrv.js
app/components/kbn.js
vendor/moment.js
vendor/modernizr-2.6.1.js
app/services/dashboard.js
app/services/fields.js
app/services/filterSrv.js
vendor/moment.js
app/services/kbnIndex.js
app/services/querySrv.js
app/services/timer.js
...
...
@@ -34,7 +35,6 @@ app/directives/dashUpload.js
app/directives/kibanaPanel.js
app/directives/ngBlur.js
app/directives/ngModelOnBlur.js
app/components/kbn.js
app/directives/tip.js
app/directives/all.js
app/filters/all.js
...
...
src/app/services/dashboard.js
View file @
dd115acc
define
([
'angular'
,
'jquery'
,
'kbn'
,
'underscore'
,
'config'
,
'moment'
,
'modernizr'
],
function
(
angular
,
_
,
config
,
Modernizr
)
{
function
(
angular
,
$
,
kbn
,
_
,
config
,
moment
,
Modernizr
)
{
'use strict'
;
var
module
=
angular
.
module
(
'kibana.services'
);
...
...
@@ -284,8 +287,8 @@ function (angular, _, config, Modernizr) {
method
:
"GET"
,
transformResponse
:
function
(
response
)
{
/*jshint -W054 */
var
_f
=
new
Function
(
"ARGS"
,
response
);
return
_f
(
$routeParams
);
var
_f
=
new
Function
(
'ARGS'
,
'kbn'
,
'_'
,
'moment'
,
'window'
,
'document'
,
'angular'
,
'require'
,
'define'
,
'$'
,
'jQuery'
,
response
);
return
_f
(
$routeParams
,
kbn
,
_
,
moment
);
}
}).
then
(
function
(
result
)
{
if
(
!
result
)
{
...
...
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