From 90e50c1c00b94132f63076bb4579012ba0862e5b Mon Sep 17 00:00:00 2001
From: j <okp57855@psoxs.com>
Date: Thu, 1 Mar 2018 21:37:28 +1300
Subject: [PATCH] Reverting to only JS and CSS.

---
 src/init/storyInit.tw                       |  2 --
 src/uncategorized/BackwardsCompatibility.tw |  4 ---
 src/uncategorized/futureSocities.tw         | 27 +--------------------
 src/uncategorized/options.tw                |  9 -------
 4 files changed, 1 insertion(+), 41 deletions(-)

diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw
index 71d16b96b0f..69a6a139d34 100644
--- a/src/init/storyInit.tw
+++ b/src/init/storyInit.tw
@@ -1306,8 +1306,6 @@ erectileImplant: 0
 /* Career-skill gain */
 <<set $masteredXP = 200>>
 
-<<set $JqueryUI = 0>>
-
 <<include "secInit">>
 
 <<goto "Alpha disclaimer">>
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index 3c9def6e2b3..de0d1de390d 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -2964,10 +2964,6 @@ Setting missing slave variables:
 <<HeroSlavesCleanup>>
 Done!
 
-<<if ndef $JqueryUI>>
-	<<set $JqueryUI = 0>>
-<</if>>
-
 <<if ndef $PC.hacking>>
 	<<set $PC.hacking = 0>>
 <</if>>
diff --git a/src/uncategorized/futureSocities.tw b/src/uncategorized/futureSocities.tw
index 131b5a9816a..76775e83560 100644
--- a/src/uncategorized/futureSocities.tw
+++ b/src/uncategorized/futureSocities.tw
@@ -460,37 +460,12 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc
 	Increase
 <</if>>
 */
-<<if $JqueryUI == 0>>
+
 <<if $FSSpending > 10000>><<set _warn = 1>><</if>>
 <<set $FSSpending = Number($FSSpending) || 0>>
 <<set $FSSpending = Math.clamp(Math.ceil($FSSpending/1000)*1000, 0, 10000)>>
 <br>You are spending ¤<<textbox "_newFSSpending" $FSSpending>> each week to support your societal goals. [[Save changes|Future Society][$FSSpending = Number(_newFSSpending) || 0]]
-<<else>>
-<br>
 You are spending ¤<span id="spendingValue"><<= $FSSpending.toLocaleString("en-US")>></span> each week to support your societal goals.
-<div>
-	<div style="float: left; line-height: 2em;">Spending: ¤0</div>
-	<div style="float: left; height: 2em; padding: 0 25px;">
-		<div style="width: 400px; top: 50%; margin-top: -0.4em;" id="spendingSlider"></div>
-	</div>
-	<div style="float: left; line-height: 2em;">¤10,000</div>
-</div>
-<<script>>
-$(function() {
-	var valueHolder = $("#spendingValue");
-	$("#spendingSlider").slider({
-		max: 10000,
-		min: 0,
-		step: 1,
-		value: State.variables.FSSpending,
-		slide: function(event, ui) {
-			State.variables.FSSpending = Math.round(ui.value);
-			valueHolder.text(State.variables.FSSpending.toLocaleString("en-US"));
-		},
-	});
-});
-<</script>>
-<</if>>
 <<if _warn>><br>//Spending more than <<print cashFormat(10000)>> weekly would be counterproductive//<</if>>
 
 <br>
diff --git a/src/uncategorized/options.tw b/src/uncategorized/options.tw
index 69dcc8d5782..9bf470ea1a5 100644
--- a/src/uncategorized/options.tw
+++ b/src/uncategorized/options.tw
@@ -162,15 +162,6 @@ Tips from the Encyclopedia are
 	@@.cyan;ENABLED@@. [[Disable|Options][$showTipsFromEncy = 0]]
 <</if>>
 
-<br><br>
-''GUI''
-<br>Jquery support is
-<<if $JqueryUI != 1>>
-	@@.red;DISABLED@@. [[Enable|Options][$JqueryUI = 1]] 
-<<else>>
-	@@.cyan;ENABLED@@. [[Disable|Options][$JqueryUI = 0]]
-<</if>>
-
 <br><br>
 ''REPORTS''
 <br>
-- 
GitLab