From 1ab055962ac09acb19c54ac65dad847a534cc452 Mon Sep 17 00:00:00 2001 From: Kuldeep M Date: Tue, 2 Apr 2019 12:23:47 +0100 Subject: [PATCH] [feature] adding title tag to url text --- js/link.js | 3 +++ js/version.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/js/link.js b/js/link.js index f4fdb7fa..f4020ab0 100644 --- a/js/link.js +++ b/js/link.js @@ -322,6 +322,9 @@ var link = (function() { attr: [{ key: "class", value: "link-url-text" + }, { + key: "title", + value: data.url.replace(/^https?\:\/\//i, "").replace(/\/$/, "") }] }); var linkControl = helper.makeNode({ diff --git a/js/version.js b/js/version.js index 52f1d6a4..382a316c 100644 --- a/js/version.js +++ b/js/version.js @@ -1,7 +1,7 @@ var version = (function() { // version is normally bumped when the state needs changing or any new functionality is added - var current = "2.12.2"; + var current = "2.13.0"; var compare = function(a, b) { var pa = a.split(".");