Merge pull request #132 from rashidkpc/master

Fix for jquery race when using firebug
pull/7/head
Rashid Khan 12 years ago
commit 20cdd76abc
  1. 1
      common/lib/settings.js
  2. 1
      index.html
  3. 1
      js/app.js
  4. 2
      panels/histogram/module.js

@ -3,7 +3,6 @@
var Settings = function (s) {
var _d = {
elasticsearch : 'localhost:9200',
timeformat : 'mm/dd HH:MM:ss',
modules : [],
kibana_index : 'kibana-int'
}

@ -21,6 +21,7 @@
<link rel="stylesheet" href="common/css/timepicker.css">
<!-- project dependency libs -->
<script src="common/lib/jquery-1.8.0.min.js"></script>
<script src="common/lib/LAB.min.js"></script>
<script src="common/lib/underscore.min.js"></script>
<script src="common/lib/settings.js"></script>

@ -17,7 +17,6 @@ var modules = [
var scripts = []
var labjs = $LAB
.script("common/lib/jquery-1.8.0.min.js")
.script("common/lib/modernizr-2.6.1.min.js")
.script("common/lib/underscore.min.js")
.script("common/lib/angular.min.js")

@ -118,7 +118,7 @@ angular.module('kibana.histogram', [])
$scope.panel.loading = true;
var _segment = _.isUndefined(segment) ? 0 : segment
var request = $scope.ejs.Request().indices($scope.index[_segment]);
// Build the question part of the query
var queries = [];
_.each($scope.panel.query, function(v) {

Loading…
Cancel
Save