[feature] adding title tag to url text

This commit is contained in:
Kuldeep M 2019-04-02 12:23:47 +01:00
parent 4adbca69e4
commit 1ab055962a
2 changed files with 4 additions and 1 deletions

View File

@ -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({

View File

@ -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(".");