mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
trying to get more functions to work
This commit is contained in:
parent
21ef0cdcd2
commit
4f0042bed1
@ -28,7 +28,9 @@
|
||||
"grunt-contrib-uglify": "~0.2.4",
|
||||
"load-grunt-tasks": "~0.2.0",
|
||||
"glob": "~3.2.7",
|
||||
"grunt-contrib-connect": "~0.5.0"
|
||||
"grunt-contrib-connect": "~0.5.0",
|
||||
"mocha": "~1.16.1",
|
||||
"expect.js": "~0.2.0"
|
||||
},
|
||||
"license": "Apache License"
|
||||
}
|
||||
|
@ -31,7 +31,7 @@
|
||||
|
||||
<div class="grafana-target-func-panel">
|
||||
<span class="grafana-target-func-panel-icon">
|
||||
<i class="icon-long-arrow-right"></i>
|
||||
<!-- <i class="icon-long-arrow-right"></i> -->
|
||||
</span>
|
||||
<ul>
|
||||
<li ng-repeat="func in functions">
|
||||
|
@ -30,6 +30,13 @@
|
||||
ng-change="functionParamsChanged(func)" ng-model-onblur
|
||||
ng-model="func.params[$index]" />
|
||||
|
||||
<input ng-if="param.type === 'string'"
|
||||
type="text"
|
||||
focus-me="true"
|
||||
class="input-small"
|
||||
ng-change="functionParamsChanged(func)" ng-model-onblur
|
||||
ng-model="func.params[$index]" />
|
||||
|
||||
<select ng-if="param.type === 'node'"
|
||||
class="input-mini"
|
||||
ng-model="func.params[$index]"
|
||||
|
@ -12,6 +12,7 @@ function () {
|
||||
{
|
||||
name: "sumSeries",
|
||||
params: [],
|
||||
defaultParams: []
|
||||
},
|
||||
{
|
||||
name: "groupByNode",
|
||||
|
2
src/css/bootstrap.dark.min.css
vendored
2
src/css/bootstrap.dark.min.css
vendored
File diff suppressed because one or more lines are too long
2
src/vendor/bootstrap/less/grafana.less
vendored
2
src/vendor/bootstrap/less/grafana.less
vendored
@ -160,7 +160,7 @@
|
||||
|
||||
.grafana-target-func-panel-icon {
|
||||
float: left;
|
||||
padding: 1px 7px;
|
||||
padding: 1px 15px;
|
||||
}
|
||||
|
||||
input[type=text].func-param {
|
||||
|
Loading…
Reference in New Issue
Block a user