Manifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<WebAccess version="11.0"> | |
<plugin moreinfo="http://bzbetty.blogspot.co.nz/2012/11/very-simple-tfs-2012-web-access-plugin.html" name="Make Logo Clickable" vendor="Betty" version="0.0.0.3"> | |
<modules> | |
<module loadAfter="TFS.Core" namespace="Clickable"></module> | |
</modules> | |
</plugin> | |
</WebAccess> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TFS.module("Clickable",[],function(){ }); | |
$(function() { $(".logo").replaceWith("<a class='header-item logo header-logo-onpremise' href='/tfs/'>"); }); |
Obviously not exactly the best plugin in the world, considering we actually bypass the whole plugin system, but it works and may be of help to someone.