From 1a6325306e3783a4efb4a0c09fdf2c6740fc18c9 Mon Sep 17 00:00:00 2001 From: marcins78 Date: Wed, 2 Jan 2013 10:26:04 +0000 Subject: [PATCH] Deck build and merchant are now links, rather than buttons. --- .../src/main/webapp/js/gemp-014/hallUi.js | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/js/gemp-014/hallUi.js b/gemp-lotr/gemp-lotr-web/src/main/webapp/js/gemp-014/hallUi.js index 146414368..6527b9289 100644 --- a/gemp-lotr/gemp-lotr-web/src/main/webapp/js/gemp-014/hallUi.js +++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/js/gemp-014/hallUi.js @@ -52,22 +52,10 @@ var GempLotrHallUI = Class.extend({ var that = this; - var editDeck = $(""); - editDeck.button().click( - function () { - location.href = 'deckBuild.html'; - }); - - var merchant = $(""); - merchant.button().click( - function () { - location.href = 'merchant.html'; - }); - - this.buttonsDiv.append(editDeck); + this.buttonsDiv.append("Deck builder"); this.buttonsDiv.append(" | "); - this.buttonsDiv.append(merchant); + this.buttonsDiv.append("Merchant"); this.buttonsDiv.append(" | "); this.pocketDiv = $("
");