Skip to content

Commit

Permalink
Fix JS coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Apr 19, 2010
1 parent d5f2b61 commit ce4d65f
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions web/js/game.js
Expand Up @@ -162,8 +162,10 @@
beat: function()
{
var self = this;
if (self.options.game.finished)
if (self.options.game.finished)
{
return;
}
$.ajax({
url: self.options.beat.url,
dataType: "json",
Expand Down Expand Up @@ -334,8 +336,4 @@
}
});

$.extend($.cheek.game, {
getter: "getBoard getTable"
});

})(jQuery);
})(jQuery);

0 comments on commit ce4d65f

Please sign in to comment.