From 47cce54b3bee0f829109814ebcf05176152c0b0d Mon Sep 17 00:00:00 2001 From: jlevine18 Date: Sun, 6 Jan 2019 12:54:35 -0600 Subject: [PATCH] Delete scripts.js --- website/scripts.js | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 website/scripts.js diff --git a/website/scripts.js b/website/scripts.js deleted file mode 100644 index 1f110633..00000000 --- a/website/scripts.js +++ /dev/null @@ -1,28 +0,0 @@ -var currentPageNum=0; -var contentArray=[]; -$(document).ready(function(){ - $("#add").click(function(){ - var x = $('.formNavi').length; - $("#add").before("
"); - $("#add").text="+"; - contentArray.push([]); - currentPageNum=x-1; - }); -}); -$(document).ready(function(){ - $("#RemPage").click(function(){ - if($(".formNavi").length>1){ - $(".formNavi:nth-child("+(currentPageNum+1)+")").remove(); - $("#add").text="+"; - contentArray.splice(currentPageNum,1); - currentPageNum--; - } - }); -}); -$(document).ready(function(){ - $("#newQ").click(function(){ - $("#svb").before("
"); - $("#add").text="+"; - - }); -});