Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3095)

Unified Diff: Tools/GardeningServer/scripts/base.js

Issue 183923025: Garden-o-matic: Introduce an option to open links in a new window (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Tools/GardeningServer/scripts/ui.js » ('j') | Tools/GardeningServer/scripts/ui.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/scripts/base.js
diff --git a/Tools/GardeningServer/scripts/base.js b/Tools/GardeningServer/scripts/base.js
index d80fa5370308618718c81f81334aa00c7814b3d6..e4fdd2ed73c0e89ebde048566272f9bc9ba28336 100644
--- a/Tools/GardeningServer/scripts/base.js
+++ b/Tools/GardeningServer/scripts/base.js
@@ -323,14 +323,4 @@ base.underscoredBuilderName = function(builderName)
return builderName.replace(/[ .()]/g, '_');
}
-base.createLinkNode = function(url, textContent, opt_target)
-{
- var link = document.createElement('a');
- link.href = url;
- if (opt_target)
- link.target = opt_target;
- link.appendChild(document.createTextNode(textContent));
- return link;
-}
-
})();
« no previous file with comments | « no previous file | Tools/GardeningServer/scripts/ui.js » ('j') | Tools/GardeningServer/scripts/ui.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698