Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lisso committed Dec 29, 2016
1 parent 4b55da9 commit 84d03f9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions script/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,12 @@
.addClass('menu')
.appendTo('body');

$('<span>')
.addClass('menuBtn')
.text(_('github.'))
.click(function() { window.open('https://github.com/doublespeakgames/adarkroom'); })
.appendTo(menu);

if(typeof langs != 'undefined'){
var customSelect = $('<span>')
.addClass('customSelect')
Expand Down Expand Up @@ -179,12 +185,6 @@
.appendTo(menu);
}

$('<span>')
.addClass('menuBtn')
.text(_('github.'))
.click(function() { window.open('https://github.com/doublespeakgames/adarkroom'); })
.appendTo(menu);

// Register keypress handlers
$('body').off('keydown').keydown(Engine.keyDown);
$('body').off('keyup').keyup(Engine.keyUp);
Expand Down

0 comments on commit 84d03f9

Please sign in to comment.