2014-08-25 06:31:31 -05:00
|
|
|
<div class="submenu-controls" ng-controller="SubmenuCtrl">
|
2015-02-20 04:27:57 -06:00
|
|
|
<div class="tight-form borderless">
|
2014-08-25 06:31:31 -05:00
|
|
|
|
2015-02-20 05:20:10 -06:00
|
|
|
<ul class="tight-form-list" ng-if="dashboard.templating.list.length > 0">
|
2015-05-06 02:41:30 -05:00
|
|
|
<li ng-repeat="variable in variables" class="submenu-item">
|
2015-03-19 22:09:50 -05:00
|
|
|
<variable-value-select variable="variable" on-updated="variableUpdated(variable)"></variable-value-select>
|
2015-01-16 02:31:38 -06:00
|
|
|
</li>
|
|
|
|
</ul>
|
2014-08-28 05:44:01 -05:00
|
|
|
|
2015-02-20 05:20:10 -06:00
|
|
|
<ul class="tight-form-list" ng-if="dashboard.annotations.list.length > 0">
|
2015-05-06 02:41:30 -05:00
|
|
|
<li ng-repeat="annotation in dashboard.annotations.list" class="submenu-item annotation-segment" ng-class="{'annotation-disabled': !annotation.enable}">
|
2015-01-16 02:31:38 -06:00
|
|
|
<a ng-click="disableAnnotation(annotation)">
|
2015-03-27 02:39:08 -05:00
|
|
|
<i class="fa fa-bolt"></i>
|
2015-01-16 02:31:38 -06:00
|
|
|
{{annotation.name}}
|
2015-03-05 13:45:14 -06:00
|
|
|
<input class="cr1" id="hideYAxis" type="checkbox" ng-model="annotation.enable" ng-checked="annotation.enable">
|
|
|
|
<label for="hideYAxis" class="cr1"></label>
|
2015-01-16 02:31:38 -06:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2014-08-25 06:31:31 -05:00
|
|
|
|
2015-05-05 12:56:49 -05:00
|
|
|
<ul class="tight-form-list pull-right" ng-if="dashboard.links.length > 0">
|
2015-05-06 09:40:43 -05:00
|
|
|
<dash-links-container links="dashboard.links"></dash-links-container>
|
2015-05-05 12:56:49 -05:00
|
|
|
</ul>
|
|
|
|
|
2015-01-16 02:31:38 -06:00
|
|
|
<div class="clearfix"></div>
|
2014-08-25 06:31:31 -05:00
|
|
|
</div>
|
2015-01-16 02:31:38 -06:00
|
|
|
</div>
|