From bd617b2483868bb253aa65fd9c5153d9ef710401 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Sat, 7 Jan 2012 10:35:02 +0000 Subject: [PATCH] Adjusted link class detection The problem is that it's sometimes useful to use URLs as the title of tiddlers, making it hard to distinguish URLs from tiddler titles... --- js/WikiStore.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/WikiStore.js b/js/WikiStore.js index 10c6e149a..c6ee74107 100755 --- a/js/WikiStore.js +++ b/js/WikiStore.js @@ -185,10 +185,10 @@ WikiStore.prototype.getFormattedTiddlerField = function(title,field,format,templ WikiStore.prototype.classesForLink = function(target) { var className = "", externalRegExp = /(?:file|http|https|mailto|ftp|irc|news|data):[^\s'"]+(?:\/|\b)/i; - if(externalRegExp.test(target)) { - className = "linkExternal"; - } else if (this.tiddlerExists(target)) { + if (this.tiddlerExists(target)) { className = "linkInternalResolves"; + } else if(externalRegExp.test(target)) { + className = "linkExternal"; } else { className = "linkInternalMissing"; }