Skip to content

Commit

Permalink
no, really fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashid Khan committed Mar 24, 2014
1 parent 8c16cdb commit d48e154
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand All @@ -38,6 +39,5 @@
</config>
<div class="application" ng-view></div>
</div>
<div kbn-notifications list="notifList"></div>
</body>
</html>
2 changes: 1 addition & 1 deletion src/kibana/apps/visualize/directives/config_editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -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') {
Expand Down
16 changes: 8 additions & 8 deletions src/kibana/notify/partials/toaster.html
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d48e154

Please sign in to comment.