removing console statements from pageSetup.js
authorAnthony Talarico <talarico@gaslightmedia.com>
Mon, 12 Jun 2017 15:19:12 +0000 (11:19 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Mon, 12 Jun 2017 15:19:12 +0000 (11:19 -0400)
removing all test print statements from the js files

js/app.js
js/custom/pageSetup.js

index 9cfc432..6283466 100644 (file)
--- a/js/app.js
+++ b/js/app.js
@@ -95,8 +95,6 @@ $(document).ready(function () {
     var search_input_container  = page.find( $('.header-search-container') );
     var search_input = search_input_container.find( $('.search-input') );
     
-    console.log(search_input);
-    
     function hide_show_search(el){
         if( el.css("width") == '0px'){
             el.css("border", "1px solid grey");
@@ -114,6 +112,7 @@ $(document).ready(function () {
             
         }
     }
+    
     search_toggle.on("click", function(){
         $(this).css("display", 'none');
         hide_show_search(search_input);
index 68c920b..605c73a 100644 (file)
@@ -43,6 +43,7 @@ $(document).ready(function () {
             
         }
     }
+    
     search_toggle.on("click", function(){
         $(this).css("display", 'none');
         hide_show_search(search_input);