diff --git a/static/js/search-create.js b/static/js/search-create.js deleted file mode 100644 index 1ef296a452..0000000000 --- a/static/js/search-create.js +++ /dev/null @@ -1,11 +0,0 @@ -/* Creating a div element and appending it to the body of the page. */ -let div = window.createElement('div'); -div.id('search'); -div.style = 'z-index:-1; position:absolute;width: 300px;height: 300px;bottom: 0px;right: 25%;left: 50 %;'; -let docscontent = window.getElementByClassName('docs-content'); -docscontent.appendChild(div); -let div1 = window.createElement('div'); -div1.id('search'); -div1.style = 'z-index:-1; position:absolute;width: 300px;height: 300px;background:#063;bottom: 0px;right: 25%;left: 50 %;margin-left: -150px'; -let header = window.getElementByClassName('site-header-inside'); -header.appendChild('div1');