File "floating.js"

Full Path: /home/chawlag2/public_html/cars/admin/vendor/jquery-easing/floating.js
File size: 267 bytes
MIME-type: text/plain
Charset: utf-8

var close_button = document.querySelector(".close-button");
var social_buttons = document.querySelectorAll(".social");

close_button.addEventListener('click',()=>{
   social_buttons.forEach(function(buttons){
       buttons.classList.toggle('hide');
   });
});