diff --git a/Changelog b/Changelog index 436a3e86..69e966e1 100644 --- a/Changelog +++ b/Changelog @@ -52,5 +52,4 @@ * Initial stable release Next: - [datacenterlight] Fixed error trying to delete ssh key - [datacenterlight] Fixed footer links + [datacenterlight] Fixed credit card input issue diff --git a/hosting/static/hosting/js/createvm.js b/hosting/static/hosting/js/createvm.js index ca7891ea..53646b40 100644 --- a/hosting/static/hosting/js/createvm.js +++ b/hosting/static/hosting/js/createvm.js @@ -9,13 +9,11 @@ $(document).ready(function(){ _initOs(); - _ifOverflow(); }); $(window).resize(function(){ - _ifOverflow(); }); @@ -67,20 +65,6 @@ } }); } - function _ifOverflow(){ - - var dcContainer= document.getElementById('dcContainer'); - var containerOs= document.getElementById('containerOs'); - console.log('d-c', dcContainer.offsetWidth-20); - console.log('d-os', containerOs.scrollWidth); - - if(dcContainer.offsetWidth-20 < containerOs.scrollWidth){ - console.log('oooVerrflowwww'); - } - - - - }