fitnesse.resources.javascript.fitnesse_topnav.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
$(function () {
/**
* Change a.button to a real button (so it looks the same), retaining link behaviour
*/
$('a.button').replaceWith(function () {
var self = $(this);
var button = $('');
button.text(self.text());
button.click(function () {
window.location = self.attr('href');
return false;
});
return button;
});
});