removing unused jquery for old admin form
authorAnthony Talarico <talarico@gaslightmedia.com>
Mon, 25 Apr 2016 20:15:28 +0000 (16:15 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Mon, 25 Apr 2016 20:15:28 +0000 (16:15 -0400)
js/admin.js

index 4ebb072..427f37f 100644 (file)
@@ -4,47 +4,6 @@
  * and open the template in the editor.
  */
 jQuery(document).ready( function () { 
-    jQuery("#startDate, #endDate").datepicker();
-    jQuery('#dateTimeLink, #location, #cost, #admin, #eventAdmin').click(function(e) {
-        e.preventDefault();
-        return false;
-    });
-    
-    jQuery("#dateTimeLink").click( function (){
-        if(jQuery("#dateTime").css("display") == "none"){
-            jQuery("#dateTime").slideDown(600) ;
-        } else {
-            jQuery("#dateTime").slideUp(600) ;
-        }
-    });
-    jQuery("#location").click( function (){
-        if(jQuery("#locationDetails").css("display") == "none"){
-            jQuery("#locationDetails").slideDown(600) ;
-        } else {
-            jQuery("#locationDetails").slideUp(600) ;
-        }
-    });
-     jQuery("#cost").click( function (){
-        if(jQuery("#costDetails").css("display") == "none"){
-            jQuery("#costDetails").slideDown(600) ;
-        } else {
-            jQuery("#costDetails").slideUp(600) ;
-        }
-    });
-      jQuery("#admin").click( function (){
-        if(jQuery("#adminDetails").css("display") == "none"){
-            jQuery("#adminDetails").slideDown(600) ;
-        } else {
-            jQuery("#adminDetails").slideUp(600) ;
-        }
-    });
-    jQuery("#eventAdmin").click( function (){
-        if(jQuery("#eventAdminDetails").css("display") == "none"){
-            jQuery("#eventAdminDetails").slideDown(600) ;
-        } else {
-            jQuery("#eventAdminDetails").slideUp(600) ;
-        }
-    });
     
  
 });