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