mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-06-01 07:34:17 -05:00
12 lines
278 B
JavaScript
12 lines
278 B
JavaScript
(function($) {
|
|
|
|
var TeambuilderRoom = this.TeambuilderRoom = this.Room.extend({
|
|
initialize: function() {
|
|
// left menu
|
|
var buf = '<div class="mainmessage"><p>Insert teambuilder here</p>';
|
|
this.$el.addClass('ps-room-light').html(buf);
|
|
}
|
|
});
|
|
|
|
}).call(this, jQuery);
|