From 2f5f9c8c3cca2ac0ed56ba644351feea7bd49d84 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sat, 2 May 2015 20:39:03 -0500 Subject: [PATCH] Make anchor tags with 'button' class render as jQuery UI buttons. --- tailbone/static/js/tailbone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tailbone/static/js/tailbone.js b/tailbone/static/js/tailbone.js index 515e2277..fb84dd4b 100644 --- a/tailbone/static/js/tailbone.js +++ b/tailbone/static/js/tailbone.js @@ -108,7 +108,7 @@ $(function() { /* * Fix buttons. */ - $('button').button(); + $('button, a.button').button(); $('input[type=submit]').button(); $('input[type=reset]').button();