From 404bc2dda8fac26f349f113ba9d9c2c5dd2b4841 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Wed, 23 Dec 2015 12:08:51 -0500 Subject: [PATCH] removing div with clear both style --- js/app.js | 2 +- js/custom/upcp.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index 87fec79..05a95df 100644 --- a/js/app.js +++ b/js/app.js @@ -73,7 +73,7 @@ $(document).ready(function () { $('div').filter(function() { return $(this).css('clear') == 'both'; - }).css("clear", "none"); + }).remove(); }); diff --git a/js/custom/upcp.js b/js/custom/upcp.js index 980d414..aaaa512 100644 --- a/js/custom/upcp.js +++ b/js/custom/upcp.js @@ -53,7 +53,7 @@ $(document).ready(function () { $('div').filter(function() { return $(this).css('clear') == 'both'; - }).css("clear", "none"); + }).remove(); }); -- 2.17.1