File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
vendor/assets/javascripts/bootstrap-wysihtml5 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12785,8 +12785,8 @@ wysihtml5.views.View = Base.extend(
12785
12785
12786
12786
// --------- Show url in tooltip when hovering links or images ---------
12787
12787
var titlePrefixes = {
12788
- // IMG: "Image: ",
12789
- // A: "Link: "
12788
+ IMG: "Image: ",
12789
+ A: "Link: "
12790
12790
};
12791
12791
12792
12792
dom.observe(element, "mouseover", function(event) {
@@ -12797,7 +12797,7 @@ wysihtml5.views.View = Base.extend(
12797
12797
return;
12798
12798
}
12799
12799
var hasTitle = target.hasAttribute("title");
12800
- if(!hasTitle){
12800
+ if(false && !hasTitle){
12801
12801
title = titlePrefixes[nodeName] + (target.getAttribute("href") || target.getAttribute("src"));
12802
12802
target.setAttribute("title", title);
12803
12803
}
You can’t perform that action at this time.
0 commit comments