diff --git a/www/conservancy/static/js/jquery.outerhtml.js b/www/conservancy/static/js/jquery.outerhtml.js deleted file mode 100644 index 1aed405acd7a3504d6e1b24fecdf67f370d52d17..0000000000000000000000000000000000000000 --- a/www/conservancy/static/js/jquery.outerhtml.js +++ /dev/null @@ -1,20 +0,0 @@ -/* - * jQuery outerHTML - * - * Copyright (c) 2008 Ca-Phun Ung - * Dual licensed under the MIT (MIT-LICENSE.txt) - * and GPL (GPL-LICENSE.txt) licenses. - * - * http://yelotofu.com/labs/jquery/snippets/outerhtml/ - * - * outerHTML is based on the outerHTML work done by Brandon Aaron - * But adds the ability to replace an element. - */ - -(function($) { - $.fn.outerHTML = function(s) { - return (s) - ? this.before(s).remove() - : $('

').append(this.eq(0).clone()).html(); - } -})(jQuery);