2013-07-17, 00:40:52
I cannot stand seeing X for delete.
Here is something to fix those plugin that still use X for delete. eg. i18n plugins
I use it in hook_footer with my hook components plugin.
Here is something to fix those plugin that still use X for delete. eg. i18n plugins
I use it in hook_footer with my hook components plugin.
Code:
<script type="text/javascript">
$('a').filter(function () {
return $(this).text() === "X";
}).html('×');
</script>