Use $ instead of jQuery
This commit is contained in:
parent
953334a4f7
commit
442a6d2b11
|
@ -17,7 +17,7 @@ function submitQuery() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function bindHandlers() {
|
function bindHandlers() {
|
||||||
jQuery.ajaxSetup({
|
$.ajaxSetup({
|
||||||
cache: false
|
cache: false
|
||||||
});
|
});
|
||||||
$("#queryForm").submit(submitQuery);
|
$("#queryForm").submit(submitQuery);
|
||||||
|
|
|
@ -380,9 +380,9 @@ Prometheus.Graph.prototype.updateGraph = function(reloadGraph) {
|
||||||
},
|
},
|
||||||
onRender: function() {
|
onRender: function() {
|
||||||
var width = this.graph.width;
|
var width = this.graph.width;
|
||||||
var element = jQuery(this.element);
|
var element = $(this.element);
|
||||||
|
|
||||||
jQuery(".x_label", element).each(function() {
|
$(".x_label", element).each(function() {
|
||||||
if ($(this).outerWidth() + element.offset().left > width) {
|
if ($(this).outerWidth() + element.offset().left > width) {
|
||||||
$(this).addClass("flipped");
|
$(this).addClass("flipped");
|
||||||
} else {
|
} else {
|
||||||
|
@ -390,7 +390,7 @@ Prometheus.Graph.prototype.updateGraph = function(reloadGraph) {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
jQuery(".item", element).each(function() {
|
$(".item", element).each(function() {
|
||||||
if ($(this).outerWidth() + element.offset().left > width) {
|
if ($(this).outerWidth() + element.offset().left > width) {
|
||||||
$(this).addClass("flipped");
|
$(this).addClass("flipped");
|
||||||
} else {
|
} else {
|
||||||
|
@ -457,7 +457,7 @@ function addGraph(options) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function init() {
|
function init() {
|
||||||
jQuery.ajaxSetup({
|
$.ajaxSetup({
|
||||||
cache: false
|
cache: false
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue