public/assets/js/application.js
changeset 108 e4e5cfaf5814
parent 107 6f411821b12b
child 109 3b95550f4189
--- a/public/assets/js/application.js	Sat Feb 20 18:36:00 2016 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-// Adapted from socorro
-// Licence: same as socorro (MPL ?)
-$(document).ready(function () {
-    $('.signature-column').append(' <a class="expand" href="#">[Expand]</a>');
-    $('.expand').click(function () {
-        $(".shortened-signature", $(this).parents('table')).each(function () {
-            $(this).text($(this).attr('title')).removeAttr('title');
-            $(this).removeClass("prettyprinted");
-        });
-        prettyPrint();
-        $(this).remove();
-        return false;
-    });
-
-    $('a[data-toggle="tooltip"]').tooltip();
-    prettyPrint();
-});