Browse Source

hastick name

master
Alexey Velikiy 6 years ago
parent
commit
201f3020d8
  1. 2
      examples/cpu_util.json
  2. 2
      package-lock.json
  3. 4
      package.json
  4. 2
      src/partials/tab_display.html
  5. 2
      src/template.ts
  6. 2
      src/thresholds_form.ts

2
examples/cpu_util.json

@ -129,7 +129,7 @@
"sort": 0, "sort": 0,
"value_type": "individual" "value_type": "individual"
}, },
"type": "corpglory-grafalys-graph-panel", "type": "hastic-graph-panel",
"xaxis": { "xaxis": {
"buckets": null, "buckets": null,
"mode": "time", "mode": "time",

2
package-lock.json generated

@ -1,6 +1,6 @@
{ {
"name": "hastic-graph-panel", "name": "hastic-graph-panel",
"version": "0.1.0", "version": "0.1.1",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

4
package.json

@ -1,7 +1,7 @@
{ {
"name": "hastic-graph-panel", "name": "hastic-graph-panel",
"version": "0.1.0", "version": "0.1.1",
"description": "Grafalys default panel for rendering and interaction with analytic unit", "description": "Hastic default panel for rendering graph and anomalies",
"main": "dist/module", "main": "dist/module",
"scripts": { "scripts": {
"build": "webpack --config build/webpack.prod.conf.js", "build": "webpack --config build/webpack.prod.conf.js",

2
src/partials/tab_display.html

@ -129,7 +129,7 @@
</div> </div>
<div class="edit-tab-content" ng-if="ctrl.subTabIndex === 2"> <div class="edit-tab-content" ng-if="ctrl.subTabIndex === 2">
<grafalys-graph-threshold-form panel-ctrl="ctrl"></grafalys-graph-threshold-form> <hastic-graph-threshold-form panel-ctrl="ctrl"></hastic-graph-threshold-form>
</div> </div>
</div> </div>

2
src/template.ts

@ -1,7 +1,7 @@
var template = ` var template = `
<div class="graph-panel" ng-class="{'graph-panel--legend-right': ctrl.panel.legend.rightSide}"> <div class="graph-panel" ng-class="{'graph-panel--legend-right': ctrl.panel.legend.rightSide}">
<div class="graph-panel__chart" id="graphPanel" ng-dblclick="ctrl.zoomOut()" /> <div class="graph-panel__chart" id="graphPanel" ng-dblclick="ctrl.zoomOut()" />
<div class="grafalys-graph-legend" id="graphLegend" /> <div class="hastic-graph-legend" id="graphLegend" />
</div> </div>
`; `;

2
src/thresholds_form.ts

@ -128,7 +128,7 @@ var template = `
</div> </div>
`; `;
coreModule.directive('grafalysGraphThresholdForm', function() { coreModule.directive('hasticGraphThresholdForm', function() {
return { return {
restrict: 'E', restrict: 'E',
template: template, template: template,

Loading…
Cancel
Save