Skip to content

Commit

Permalink
Raise MAX NAES and increase canvas size
Browse files Browse the repository at this point in the history
  • Loading branch information
kevindice committed Apr 15, 2016
1 parent 8fc81c3 commit 5ff591a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var sets = require('simplesets');
var os = require('os');
var Queue = require('./static/js/queue.js');

var MAX_NAMES = 16;
var MAX_NAMES = 32;

app.use(express.static('static'));
app.set('view engine', 'jade');
Expand Down
2 changes: 1 addition & 1 deletion views/tree.jade
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ html
// (filled in by javascript code specific to the animtion)
table#AlgorithmSpecificControls
// Drawing canvas where all animation is done. Note: can be resized in code
canvas#canvas(width='1800', height='1000')
canvas#canvas(width='2500', height='1400')
#generalAnimationControlSection
//
Table for buttons to control general animation (play/pause/undo/etc) ->
Expand Down

0 comments on commit 5ff591a

Please sign in to comment.