mirror of https://gitee.com/bigwinds/arangodb
fixed and cleaned up tooltips
This commit is contained in:
parent
5abdc1e4b4
commit
3b51bbe26f
|
@ -560,10 +560,6 @@
|
||||||
|
|
||||||
$("[data-toggle=tooltip]").tooltip();
|
$("[data-toggle=tooltip]").tooltip();
|
||||||
|
|
||||||
$('.modalImportTooltips').tooltip({
|
|
||||||
placement: "left"
|
|
||||||
});
|
|
||||||
|
|
||||||
arangoHelper.fixTooltips(".icon_arangodb, .arangoicon", "top");
|
arangoHelper.fixTooltips(".icon_arangodb, .arangoicon", "top");
|
||||||
this.drawTable();
|
this.drawTable();
|
||||||
this.renderPaginationElements();
|
this.renderPaginationElements();
|
||||||
|
|
|
@ -276,7 +276,10 @@
|
||||||
model.advancedContent = advancedContent || false;
|
model.advancedContent = advancedContent || false;
|
||||||
$(".modal-body").html(template.render(model));
|
$(".modal-body").html(template.render(model));
|
||||||
$('.modalTooltips').tooltip({
|
$('.modalTooltips').tooltip({
|
||||||
placement: "left"
|
position: {
|
||||||
|
my: "left top",
|
||||||
|
at: "right+55 top-1"
|
||||||
|
}
|
||||||
});
|
});
|
||||||
var ind = buttons.indexOf(this.closeButton);
|
var ind = buttons.indexOf(this.closeButton);
|
||||||
buttons.splice(ind, 1);
|
buttons.splice(ind, 1);
|
||||||
|
|
Loading…
Reference in New Issue