diff --git a/js/client-mainmenu.js b/js/client-mainmenu.js index 4b5225c6b..8ec45e6f8 100644 --- a/js/client-mainmenu.js +++ b/js/client-mainmenu.js @@ -881,9 +881,6 @@ this.searching = false; this.updateSearch(); }, - credits: function () { - app.addPopup(CreditsPopup); - }, finduser: function () { if (app.isDisconnected) { app.addPopupMessage("You are offline."); @@ -1093,35 +1090,4 @@ } }); - var CreditsPopup = this.CreditsPopup = Popup.extend({ - type: 'semimodal', - initialize: function () { - var buf = ''; - buf += '

Pokémon Showdown (beta)

'; - if (Config.version) buf += '

Version ' + Config.version + '

'; - buf += '

Owner

'; - buf += ''; - buf += '

Staff

'; - buf += ''; - buf += '

Retired Staff

'; - buf += ''; - buf += '

Major Contributors

'; - buf += ''; - buf += '
  • Quinton Lee [sirDonovan] – Development

  • '; - buf += '

    More

    '; - buf += ''; - buf += '

    '; - this.$el.addClass('credits').html(buf); - } - }); - }).call(this, jQuery); diff --git a/js/client-teambuilder.js b/js/client-teambuilder.js index 851d02e02..b6532bf3e 100644 --- a/js/client-teambuilder.js +++ b/js/client-teambuilder.js @@ -454,7 +454,7 @@ buf += '

    '; } else if (answer === 'W') { buf += '

    Oh, I\'m Zarel! I made a Credits button for this...

    '; - buf += ''; + buf += ''; buf += '

    Isn\'t it pretty? Matches your background and everything. It used to be in the Main Menu but we had to get rid of it to save space.

    '; buf += '

    Speaking of, you should try .'; buf += '

    '; @@ -516,9 +516,6 @@ } $(button).parent().replaceWith(buf); }, - credits: function () { - app.addPopup(CreditsPopup); - }, background: function () { app.addPopup(CustomBackgroundPopup); }, diff --git a/style/client.css b/style/client.css index 76c1268ca..b37fe48a3 100644 --- a/style/client.css +++ b/style/client.css @@ -1229,36 +1229,6 @@ p.or:after { text-decoration: none; } -/********************************************************* - * Credits - *********************************************************/ - -.ps-popup.credits { - max-width: 380px; - margin-top: 20px; - padding: 5px 60px; -} -.credits h2 { - font-size: 11pt; - font-style: italic; - margin-bottom: 0; - color: #6688AA; -} -.credits ul { - padding-left: 1.5em; - margin-top: 0; - margin-bottom: 0; - color: #88AACC; -} -.credits ul li p { - color: black; -} -.credits li small { - font-size: 10pt; - display: block; - color: #555555; -} - /********************************************************* * Chat *********************************************************/