mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
no, really fixing
This commit is contained in:
parent
8c16cdbeaa
commit
d48e154b1b
3 changed files with 10 additions and 10 deletions
|
@ -13,6 +13,7 @@
|
|||
<link rel="stylesheet" href="kibana/styles/main.css" >
|
||||
</head>
|
||||
<body ng-controller="kibana" ng-class="'application-'+activeApp">
|
||||
<div kbn-notifications list="notifList"></div>
|
||||
<div class="content" style="display: none;">
|
||||
<nav class="navbar navbar-inverse navbar-static-top">
|
||||
<div class="container-fluid">
|
||||
|
@ -38,6 +39,5 @@
|
|||
</config>
|
||||
<div class="application" ng-view></div>
|
||||
</div>
|
||||
<div kbn-notifications list="notifList"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -92,7 +92,7 @@ define(function (require) {
|
|||
|
||||
if (params.interval) {
|
||||
controlsHtml += ' ' + controlTemplates.interval;
|
||||
if (!controlsHtml.match(/aggParams\.interval\.options/)); //debugger;
|
||||
if (!controlsHtml.match(/aggParams\.interval\.options/)) ; //debugger;
|
||||
}
|
||||
|
||||
if ($scope.config.categoryName === 'group') {
|
||||
|
|
|
@ -3,31 +3,31 @@
|
|||
<div class="alert" ng-class="'alert-' + notif.type">
|
||||
<table><tr>
|
||||
<td>
|
||||
<i class="fa" ng-class="'fa-' + notif.icon" tooltip="{{notif.title}}"></i> {{ notif.content }}
|
||||
<i class="fa" ng-class="'fa-' + notif.icon" tooltip="{{notif.title}}"></i> <kbn-truncated orig="{{notif.content}}" length="200" />
|
||||
</td>
|
||||
<td>
|
||||
<button
|
||||
<a
|
||||
type="button"
|
||||
ng-if="notif.stack && !notif.showStack"
|
||||
class="btn"
|
||||
ng-class="'btn-' + notif.type"
|
||||
ng-click="notif.showStack = true"
|
||||
>More Info</button>
|
||||
<button
|
||||
>More Info</a>
|
||||
<a
|
||||
type="button"
|
||||
ng-if="notif.report"
|
||||
class="btn"
|
||||
ng-class="'btn-' + notif.type"
|
||||
ng-click="notif.report()"
|
||||
>Report</button>
|
||||
<button
|
||||
>Report</a>
|
||||
<a
|
||||
type="button"
|
||||
ng-if="notif.accept"
|
||||
class="btn"
|
||||
ng-class="'btn-' + notif.type"
|
||||
ng-click="notif.accept()"
|
||||
>OK</button>
|
||||
<button
|
||||
>OK</a>
|
||||
<a
|
||||
type="button"
|
||||
ng-if="notif.address"
|
||||
class="btn"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue