From 0decc8131043580a84dd796b957056493a06f451 Mon Sep 17 00:00:00 2001 From: Nick Heinbaugh Date: Fri, 20 Jan 2023 09:36:11 -0800 Subject: [PATCH] removed the deckBuild2 since it never finished --- .../src/main/web/deckBuild2.html | 141 ------------------ .../src/main/web/soloDraft.html | 51 ++----- .../src/main/web/src/SoloDraft/index.css | 0 .../src/main/web/src/SoloDraft/soloDraft.js | 20 +++ 4 files changed, 36 insertions(+), 176 deletions(-) delete mode 100644 gemp-lotr/gemp-lotr-async/src/main/web/deckBuild2.html create mode 100644 gemp-lotr/gemp-lotr-async/src/main/web/src/SoloDraft/index.css create mode 100644 gemp-lotr/gemp-lotr-async/src/main/web/src/SoloDraft/soloDraft.js diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/deckBuild2.html b/gemp-lotr/gemp-lotr-async/src/main/web/deckBuild2.html deleted file mode 100644 index 1bf0f49f2..000000000 --- a/gemp-lotr/gemp-lotr-async/src/main/web/deckBuild2.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - Gemp-LotR - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
-
-
-
-
-
- - diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/soloDraft.html b/gemp-lotr/gemp-lotr-async/src/main/web/soloDraft.html index f40b674b4..09f094194 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/soloDraft.html +++ b/gemp-lotr/gemp-lotr-async/src/main/web/soloDraft.html @@ -1,9 +1,10 @@ - + + GEMP: LotR-TCG - Draft - + @@ -49,39 +50,19 @@ - - + + + -
-
-
-
-
-
-
+
+
+
+
+
+
+
- + + \ No newline at end of file diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/src/SoloDraft/index.css b/gemp-lotr/gemp-lotr-async/src/main/web/src/SoloDraft/index.css new file mode 100644 index 000000000..e69de29bb diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/src/SoloDraft/soloDraft.js b/gemp-lotr/gemp-lotr-async/src/main/web/src/SoloDraft/soloDraft.js new file mode 100644 index 000000000..e9ce4a68a --- /dev/null +++ b/gemp-lotr/gemp-lotr-async/src/main/web/src/SoloDraft/soloDraft.js @@ -0,0 +1,20 @@ +$(document).ready( + function () { + var ui = new GempLotrSoloDraftUI(); + + $('body').layout({ + applyDefaultStyles:true, + onresize:function () { + ui.layoutUI(true); + }, + north__minSize:"30%" + }); + + $(".ui-layout-pane").css({"background-color":"#000000"}); + + $(window).resize(function () { + ui.layoutUI(true); + }); + + ui.layoutUI(true); + }); \ No newline at end of file