removing div with clear both style
authorAnthony Talarico <talarico@gaslightmedia.com>
Wed, 23 Dec 2015 17:08:51 +0000 (12:08 -0500)
committerAnthony Talarico <talarico@gaslightmedia.com>
Wed, 23 Dec 2015 17:08:51 +0000 (12:08 -0500)
js/app.js
js/custom/upcp.js

index 87fec79..05a95df 100644 (file)
--- 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();
 
 
 });
index 980d414..aaaa512 100644 (file)
@@ -53,7 +53,7 @@ $(document).ready(function () {
 
     $('div').filter(function() {
         return $(this).css('clear') == 'both';
-    }).css("clear", "none");
+    }).remove();
 
 
 });