Skip to content
This repository has been archived by the owner on Apr 10, 2020. It is now read-only.

Commit

Permalink
More Merge Conflicts in all the JS
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Nadeau committed Jun 29, 2014
2 parents 02b6093 + dee8242 commit d27c924
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 194 deletions.
3 changes: 2 additions & 1 deletion app/js/application.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
$(document).ready(function(){

channel = new EventChannel();
// Editor For Information
var editor = ace.edit("editor");
editor.setTheme("ace/theme/twilight");
Expand Down Expand Up @@ -42,7 +43,7 @@ $(document).ready(function(){

editor.setValue("Type \"puts 'Hello World'\"");

var game = new Game();
var game = new Game(channel);

});

Expand Down
2 changes: 1 addition & 1 deletion app/js/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var EventChannel = function(){
if(e["target"] == name){
var found = true;
for(i = 0; i < params.length; i++) {
if params[i] != e["params"][i]{
if(params[i] != e["params"][i]){
found = false;
break;
}
Expand Down
Loading

0 comments on commit d27c924

Please sign in to comment.