From 675839459459219f3ca44d3a309b05cd9996e4bd Mon Sep 17 00:00:00 2001 From: rlx Date: Fri, 19 Feb 2016 21:00:08 +0530 Subject: [PATCH] fix tooltip for book covers that are not editable --- static/js/infoView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/infoView.js b/static/js/infoView.js index d3cf33f..402f488 100644 --- a/static/js/infoView.js +++ b/static/js/infoView.js @@ -405,7 +405,7 @@ oml.ui.infoView = function(externalData, isMixed) { $image = Ox.Element({ element: '', - tooltip: !externalData + tooltip: isEditable ? Ox._('Doubleclick to edit') : '' })