diff options
Diffstat (limited to 'script')
-rw-r--r-- | script/slx-fixes.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/script/slx-fixes.js b/script/slx-fixes.js index 1ed71cb9..9cd93c05 100644 --- a/script/slx-fixes.js +++ b/script/slx-fixes.js @@ -41,4 +41,11 @@ if (history && history.replaceState && window && window.location && window.locat // Simple decollapse functionality for tables $('.slx-decollapse').click(function () { $(this).siblings('.collapse').removeClass('collapse'); +}); + +$('a.disabled').each(function() { + var $this = $(this); + var $hax = $('<div class="disabled-hack">'); + $this.after($hax); + $hax.append($this); });
\ No newline at end of file |