post tooltips: disable on pool/favgroup order pages.

Disable to avoid tooltips appearing while trying to drag and drop.
This commit is contained in:
evazion
2018-04-27 00:08:21 -05:00
parent 72664e0105
commit 63a29247b2

View File

@@ -8,6 +8,8 @@ Danbooru.PostTooltip.render_tooltip = function (event, qtip) {
});
};
Danbooru.PostTooltip.POST_SELECTOR = "*:not(.ui-sortable-handle) > .post-preview img";
// http://qtip2.com/options
Danbooru.PostTooltip.QTIP_OPTIONS = {
style: "qtip-light post-tooltip",
@@ -43,7 +45,7 @@ Danbooru.PostTooltip.QTIP_OPTIONS = {
};
Danbooru.PostTooltip.initialize = function () {
$(document).on("mouseenter", ".post-preview img", function (event) {
$(document).on("mouseenter", Danbooru.PostTooltip.POST_SELECTOR, function (event) {
$(this).qtip(Danbooru.PostTooltip.QTIP_OPTIONS, event);
});
};